解决 KEIL514 编译错误 \SYSTEM\sys\stm32f10x.h(478): error: #5: cannot open source input file "core_cm3.h"

安装好KEIL5, 编译第一个文件出现一个错误:


compiling main.c…
User\stm32f10x.h(478): error: #5: cannot open source input file “core_cm3.h”: No such file or directory
#include “core_cm3.h”
User\main.c: 0 warnings, 1 error
“User\main.c” - 1 Error(s), 0 Warning(s).

搜索KEIL_v5目录, 发觉core_cm3.h在 c:\Keil_v5\ARM\Pack\ARM\CMSIS\4.2.0\CMSIS\Include 目录下。

原因:
该core_cm3.h文件在stm32f4xx.h里面被引用,实际上是ARM CMSIS的东西,路径在MDK安装路径下,为: MDK安装目录keil_v5\ARM\Pack\ARM\CMSIS\4.2.0\CMSIS\Include

貌似程序没关联这个路径。

那我们可以通过手动制定路径的办法,解决这个问题.

解决方法:
添加路径映射:点击魔术棒–>C/C++选项卡–>Include Paths ,添加
C:\Keil_v5\ARM\Pack\ARM\CMSIS\4.2.0\CMSIS\Include

再编译, 顺利通过。

解决 KEIL514 编译错误 \SYSTEM\sys\stm32f10x.h(478): error: #5: cannot open source input file

你可能感兴趣的:(Embedded,system)