HI
I just download the demo in eclipse and once trying to compile this is what I get D:\FreeRTOS\FreeRTOS\Demo\WIN32-MingW/FreeRTOSConfig.h:156:26: fatal error: trcRecorder.h: No such file or directory
But you should not need to download it explicitly. Did you clone with submodules? Can you share the command that you used to clone the FreeRTOS source? Also, please share the complete error log.
It looks like the repo was modified a bit since that last link was posted. You can find the library here and the git submodule here. The submodule will give you the exact commit which is being used.
You’ll want to use either the --recurse-submodules flag when cloning the repo (example: git clone https://github.com/FreeRTOS/FreeRTOS.git --recurse-submodules) or you can use this submodule update command to clone down out the submodules after you’ve cloned (git submodule update --init --recursive).
If you don’t clone the submodules then you should see the FreeRTOS-Plus/Source/FreeRTOS-Plus-Trace directory as empty which would explain why trcRecorder.h cannot be found.