rtel wrote on Monday, April 01, 2019:
It is not clear what you are doing, but from your posts so far it sounds like you have created a project using the Windows simulator, and that project is having a problem related to the trace recorder. I am assuming that if you created the project yourself that you have not added the trace recorder code and that is the cause of your issue.
If you use the Win32 project in the FreeRTOS download then you need to remove any calls to the trace functionality. For example:
- Remove the call to vTraceEnable(): https://sourceforge.net/p/freertos/code/HEAD/tree/trunk/FreeRTOS/Demo/WIN32-MSVC/main.c#l146
- Remove the call to uiTraceStart(): https://sourceforge.net/p/freertos/code/HEAD/tree/trunk/FreeRTOS/Demo/WIN32-MSVC/main.c#l160
- Remove the inclusion of trcRecorder.h https://sourceforge.net/p/freertos/code/HEAD/tree/trunk/FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h#l124
- Set configUSE_TRACE_FACILITY to 0 https://sourceforge.net/p/freertos/code/HEAD/tree/trunk/FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h#l52
- Probably other stuff.