在线时间42 小时
UID2055740
ST金币0
蝴蝶豆0
注册时间2013-11-10
高级会员
- 最后登录
- 2020-11-14
|
发表于 2015-2-15 22:07:40
|
显示全部楼层
a0a.1 32b0c
你好,我遇到你一样的问题,库有的函数不同。然后其找的,如下代码,072上还是不亮灯。。
编译下载都没出错的。就是灯不亮,这是为什么呢?
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
SystemInit();
RCC_APB2PeriphClockCmd(RCC_AHBENR_GPIOAEN,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_5;
GPIO_InitStructure.GPIO_Speed =GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode =GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType =GPIO_OType_PP;
GPIO_Init(GPIOA,&GPIO_InitStructure);
while(1)
{
GPIO_SetBits(GPIOA,GPIO_Pin_5);
//delay(1);
//GPIO_ResetBits(GPIOA,GPIO_Pin_5);
//delay(10);
}
} |
|