摘要: 1. 使用系统定时器实现流水灯效果。 2. 代码: main.c #include "stm32f10x.h" #include "bsp_led.h" #include "bsp_systick.h" int main(void) { LED_GPIO_Config(); while(1) { / 阅读全文
posted @ 2022-02-17 22:41 JRS077 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1. 错误信息:..\Libraries\CMSIS\core_cm3.h(1502): error: #20: identifier "IRQn_Type" is undefined 2. 解决方法: 在编写的bsp_systick.h中添加#include "stm32f10x.h",且必须添加 阅读全文
posted @ 2022-02-17 21:43 JRS077 阅读(1475) 评论(0) 推荐(0) 编辑