打印

【stm32f0实验】自己建立的工程模板和点亮LED

[复制链接]
2435|5
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
gaochy1126|  楼主 | 2012-7-23 17:05 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include "stm32f0xx_conf.h"

#define uchar unsigned char
#define uint unsigned int

GPIO_InitTypeDef        GPIO_InitStructure;
void delay()
{
                uint x,y;
        for(x=0;x<1000;x++)
                for(y=0;y<1000;y++);
       
}
void Set_Led()
{
                GPIO_WriteBit(GPIOC,GPIO_Pin_9,1);
}

void Reset_Led()
{
                GPIO_WriteBit(GPIOC,GPIO_Pin_9,0);
}
void Init_Gpio()
{
       
  RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOC, ENABLE);

  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
  GPIO_Init(GPIOC, &GPIO_InitStructure);       
       
}
int main()
{
        SystemInit();
        Init_Gpio();
        while(1)
        {
                Set_Led();
                delay();
                Reset_Led();
                delay();
               
               
        }
}

GPIO.zip

135.54 KB

沙发
GG_GG| | 2012-7-24 17:58 | 只看该作者
新手学习了

使用特权

评论回复
板凳
gigicoco007| | 2012-7-24 23:43 | 只看该作者
学习

使用特权

评论回复
地板
gygp| | 2012-7-25 08:13 | 只看该作者
感谢分享

使用特权

评论回复
5
onlyrcy| | 2012-7-25 14:20 | 只看该作者
初学点灯绝对是一语双关,非常有用

使用特权

评论回复
6
gaochy1126|  楼主 | 2012-7-26 19:26 | 只看该作者
楼上很有才 5# onlyrcy

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

1050

主题

11299

帖子

26

粉丝