coco-nut wrote on Wednesday, April 25, 2018:
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!
coco-nut wrote on Wednesday, April 25, 2018:
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!
rtel wrote on Wednesday, April 25, 2018:
Just by looking at the code suggest trying the following - then report
back any build errors:
Remove the inclusion of trcRecorder.h from the bottom of FreeRTOSConfig.h
Remove the calls to vTraceEnable(), uiTraceStart() and vTraceStop()
from main.c.
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 )
{
}