stm32f103c8t6点亮led灯代码
时间: 2023-07-03 18:16:50 浏览: 133
以下是一个简单的示例代码,用于在STM32F103C8T6上点亮LED灯:
```c
#include "stm32f10x.h"
void delay(uint32_t time) {
while(time--);
}
int main(void) {
// 打开GPIOC时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
// 配置PC13为推挽输出
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
while (1) {
// 点亮LED
GPIO_SetBits(GPIOC, GPIO_Pin_13);
delay(500000);
// 熄灭LED
GPIO_ResetBits(GPIOC, GPIO_Pin_13);
delay(500000);
}
}
```
该代码将PC13引脚配置为推挽输出,并在主循环中循环点亮和熄灭LED灯。使用delay函数生成延迟,以使LED灯闪烁。请注意,为了在STM32F103C8T6上编译此代码,您需要正确配置您的开发环境和库文件。
阅读全文