stm32f103c8t6点亮LED
时间: 2024-05-22 08:09:37 浏览: 83
LED_On1.rar_stm32f103点亮LED
要点亮STM32F103C8T6上的LED,你需要按照以下步骤进行:
1. 首先,将需要使用的GPIO口配置为输出模式,并将相应的引脚设置为高电平。例如,如果你想要点亮PA1口上的LED,那么你需要进行如下配置:
```
//开启GPIOA时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
//将PA1口配置为输出模式
GPIO_InitTypeDef GPIO_InitStructure;
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);
//将PA1口置高电平,点亮LED
GPIO_SetBits(GPIOA, GPIO_Pin_1);
```
2. 程序运行后,LED即可点亮。
阅读全文