看看代码有毛病吗

2019-10-11 15:26发布

这是主函数
# include "led.h"
void delay(int i)
{
        while(i--);
}
int main (void)
{
        LED_Init();
       
          
                 while(1)
                 {
                 
                                GPIO_ResetBits(GPIOC,GPIO_Pin_All);
                                delay(60000);
                                GPIO_SetBits(GPIOC,GPIO_Pin_All);
                 }
                 
}
# include "led.h"
# include "stm32f10x_gpio.h"
void LED_Init()
{
        GPIO_InitTypeDef  GPIO_InitStructure;
        SystemInit ();
        GPIO_InitStructure.GPIO_Mode =GPIO_Mode_Out_PP;
        GPIO_InitStructure.GPIO_Pin =GPIO_Pin_All;
        GPIO_InitStructure.GPIO_Speed =GPIO_Speed_50MHz;
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE );
        GPIO_Init(GPIOC,&GPIO_InitStructure);
}
想写一个led灯闪烁的程序 但是程序下载进去之后led灯只闪烁了六次之后不闪了是什么原因


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。