FreeRTOS without Percepio Trace tool

Hello! Could anyone please tell me how to completely disable Trace tool from my project? Or maybe tell me which older version supports Windows simulation but comes without Trace tool added yet? Thanks!

FreeRTOS without Percepio Trace tool

Just by looking at the code suggest trying the following – then report back any build errors: 1) Remove the inclusion of trcRecorder.h from the bottom of FreeRTOSConfig.h 2) Remove the calls to vTraceEnable(), uiTraceStart() and vTraceStop() from main.c. 3) Make prvSaveTraceFile() an empty function as per below, or just remove it and make sure its not called from the assert handler: ~~~ static void prvSaveTraceFile( void ) { } ~~~ 4) Remove trcKernelPort.c and trcSnapshotRecorder.c from the build (found under DemoAppSource/FreeRTOS+Trace Recorder in the Visual Studio IDE).

FreeRTOS without Percepio Trace tool

This worked perfectly! Thanks a lot!