代码如下
#include "stm32f10x.h" // Device header
void Led_Init(void){
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12; //LED端口配置
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB,&GPIO_InitStructure);
}
int main(void)
{
Led_Init();
GPIO_ResetBits(GPIOB,GPIO_Pin_12);
while(1);
}
烧写程序后LED没有任何反应,