FreeRTOS.h can't be found

./FreeRTOS/Source/croutine.c:29:10: fatal error: FreeRTOS.h: No such file or directory 29 | #include “FreeRTOS.h” | ^~~~~~~~~~~~

The error appeared when i tried to compile freertos on my machine for STM32F411RET

It includes FreeRTOSv202411.00 and stsw-stm32065_v1-9-0

this is a url of my project file folder (the forum doesn’t allow me to upload the file)

we.tl/t-mJLRfLzt44

What build system are you using, can you share the build command?

make, there’s the makefile in the zip file

The GCC is arm-none-eabi-gcc

Looks like the backslashes are causing issues; try:

-IFreeRTOS/Source/include \

-IFreeRTOS/Source/portable/RVDS/ARM_CM4_MPU \

It works.

Thanks a lot! :blush::folded_hands: