新手求入门,大神不吝赐教
时间:10-02
整理:3721RD
点击:
小白一只,新的不能再新的新手 ,大神们看看这个led灯闪烁的程序 为什么编译没有问题 也下载进去了 可就是不亮
不吝赐教,谢谢
#include"stm32f10x.h"
int i;
int main(void)
{
// RCC_Configuration();
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_1;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(GPIOA,&GPIO_InitStructure);
while(1)
{
GPIO_SetBits(GPIOA,GPIO_Pin_1);
for(i=0;i<500000;i++);
GPIO_ResetBits(GPIOA,GPIO_Pin_1); for(i=0;i<500000;i++);
}
}