天天看点

STM32错误积累

STM32错误积累

出现:.core_cm3.h(1699): error: #20: identifier “SysTick_IRQn” is undefined

解决:这是因为调用了stm32f10x.h里的SysTick_IRQn,但是当前文件未定义,所以在调用core_cm3.h前添加#include"stm32f10x.h"即可

继续阅读