欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

STM32程序编写报错集(1)——stm32f10x.h(478): error: #5: cannot open source input file “core_cm3.h“

程序员文章站 2022-06-08 18:58:10
...
编写如下程序:

STM32程序编写报错集(1)——stm32f10x.h(478): error: #5: cannot open source input file “core_cm3.h“

编译时显示错误:
stm32f10x.h(478): error: #5: cannot open source input file “core_cm3.h”: No such file or directory
#include “core_cm3.h”

解决方法:”Project“—>”Option for Group Source Group 1“……–>"C/C++"中设置”include paths“寻找”stm32f10x.h“文件的路径。

固件库“stm32f10x.h”文件默认在C:\MDKkeil5\ARM\Pack\ARM\CMSIS\4.5.0\CMSIS\Include
因此可以设置为如下:
STM32程序编写报错集(1)——stm32f10x.h(478): error: #5: cannot open source input file “core_cm3.h“
如果是自己编写的“stm32f10x.h”文件,应将文件路径设置为“stm32f10x.h”文件的所在目录下就行了。
这样设置一下程序就不报错啦!!!

注意:文件路径不能有中文呀,文件最好别在桌面!!!