This is a simple GPIO control project using STM32CubeIDE with the STM32 NUCLEO-F103RB board. The LED blinks at 0.5-second intervals.
STM32_LED和按键模板/ ├── APP/ # 应用层代码 │ ├── key_app.c/h # 按键应用处理 │ ├── led_app.c/h # LED应用处理 │ ├── scheduler.c/h # 任务调度器 │ └── mydefine.h # 自定义宏定义 ...