Keil5(MDK5)报错:#error “Please select first the target STM32F4xx device used in your application“

报错环境:Keil5/MDK5

报错提示:#35: #error directive: "Please select first the target STM32F4xx device used in your application (in stm32f4xx.h file)"
即:请先选择应用程序中使用的目标STM32F4xx设备(在STM32F4xx .h文件中)


原因分析:

根据提示显示我们需要定义下我们自己所使用的芯片,在stm32f4xx.h文件中;
Keil5(MDK5)报错:#error “Please select first the target STM32F4xx device used in your application“_第1张图片


解决方案:

点击options for target------>C/C++------>更改宏定义为你说使用的芯片支持
Keil5(MDK5)报错:#error “Please select first the target STM32F4xx device used in your application“_第2张图片
我使用的是STM32F407ZET6,属于在STM32F40_41xxx下面,
即修改宏定义Define为:USE_STDPERIPH_DRIVER,STM32F40_41xxx

USE_STDPERIPH_DRIVER,STM32F40_41xxx

在这里插入图片描述
到此一般即可解决!
如添加后还是报错的话,还有另外一种情况
在这里插入图片描述
报错提示为:error: #5: cannot open source input file "core_cmInstr.h": No such file or directory
说明没有找到core_cmInstr.h文件,没有包含进来,我们把它路径添加进来即可
Keil5(MDK5)报错:#error “Please select first the target STM32F4xx device used in your application“_第3张图片
路径为:盘符:\你的MDK(keil)安装目录\ARM\Pack\ARM\CMSIS\4.2.0\CMSIS\Include
在这里插入图片描述
最后编译ok

授人以渔,希望猿一的本篇博客能帮助到您!

你可能感兴趣的:(STM32学习笔记,stm32,单片机,嵌入式)