No such file or directory: debugging Makefile project with CubeIDE
Hello,
I have generated a makefile project on CubeIDE for STM32WB55RG and I'm trying to debugging it on CubeIDE . After a research on the forum I got to know that this is achievable and set up build settings accordingly.
When I try to debug I get the error:
../Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_hal.c:35:10: fatal error: stm32wbxx_hal.h: No such file or directory
35 | #include "stm32wbxx_hal.h"
| ^~~~~~~~~~~~~~~~~
compilation terminated.
I've checked my file system and the file does exist and on my Makefile file I have it included (4th code line)
# C includes
C_INCLUDES = \
-ICore/Inc \
-IDrivers/STM32WBxx_HAL_Driver/Inc \
-IDrivers/STM32WBxx_HAL_Driver/Inc/Legacy \
-IDrivers/CMSIS/Device/ST/STM32WBxx/Include \
-IDrivers/CMSIS/Include
Still don't understand why the file can't be found. Any clue?
