#include "stm32_lcd.h" ^~~~~~~~~~~~~ 1 error generated. compiling stm32_lcd.c... ../CM7/Src/stm32h7xx_hal_msp.c(20): warning: In file included from... ../CM7/Inc\main.h(30): error: 'stm32_lcd.h' file not found #include "stm32_lcd.h" ^~~~~~~~~~~~~ 1 error generated. compiling stm32h7xx_hal_msp.c... ../CM7/Src/stm32h7xx_it.c(20): warning: In file included from... ../CM7/Inc\main.h(30): error: 'stm32_lcd.h' file not found #include "stm32_lcd.h" ^~~~~~~~~~~~~ 1 error generated. compiling stm32h7xx_it.c... compiling stm32h7xx_hal_uart.c... ../CM7/Src/main.c(23): warning: In file included from... ../CM7/Inc\main.h(30): error: 'stm32_lcd.h' file not found #include "stm32_lcd.h" ^~~~~~~~~~~~~ 1 error generated. compiling main.c... "STM32H747I_DISCO_CM7\Exe\STM32H747I_DISCO_CM7.axf" - 4 Error(s), 0 Warning(s).
时间: 2023-07-12 08:01:10 浏览: 234
opencv_contrb编译缺少的文件 boostdesc_bgm.i,vgg_generated_120.i
这个错误提示表明在编译过程中,找不到名为 "stm32_lcd.h" 的头文件,导致编译失败。一般来说,这种错误可能有以下几种原因:
1. 文件名或路径错误:请确保你的 "stm32_lcd.h" 文件名和路径是正确的,并且该文件位于正确的位置。
2. 编译器设置错误:在你的编译器中,可能需要添加包含文件的路径。你可以在编译器的设置中添加正确的包含路径,以确保编译器可以找到该头文件。
3. 头文件缺失:请检查你的工程文件夹中是否有 "stm32_lcd.h" 文件。如果没有,请将该文件添加到你的工程文件夹中。
你可以尝试按照以下步骤解决这个问题:
1. 确认 "stm32_lcd.h" 文件名和路径是否正确。
2. 在编译器设置中添加正确的包含文件路径。
3. 检查你的工程文件夹中是否有 "stm32_lcd.h" 文件,如果没有请添加该文件。
4. 重新编译你的工程,看是否仍然报错。
如果仍然出现错误,请尝试重新安装或更新你的编译器,并确保你的编译器版本与你的硬件兼容。
阅读全文