"IRQn_Type" is undefined
Posted roscangjie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了"IRQn_Type" is undefined相关的知识,希望对你有一定的参考价值。
出错是因为你当前运行的文件调用到了core_cm3.h,而core_cm3.h文件中包含了有IRQn_Type类型名,但是此类型名是在“stm32f10x.h”中定义的,所以你需要在当前文件包含#include "core_cm3.h"之前先包含#include "stm32f10x.h"
记住,两个头文件如果顺序错误也会报错
#include "stm32f10x.h" #include "core_cm3.h"
以上是关于"IRQn_Type" is undefined的主要内容,如果未能解决你的问题,请参考以下文章
Python:为啥 ("hello" is "hello") 评估为 True? [复制]
Java boolean getter "is" vs "are"
vue.js:<component :is="comp-name"/> 和 <div :is="comp-name"/> 有啥区别?