http://www.freertos.org/a00111.html for an explanation. */\r
prvInitialiseHeap();\r
\r
+ /* Do not include trace code when performing a code coverage analysis. */\r
+ #if( projCOVERAGE_TEST != 1 )\r
+ {\r
+ /* Initialise the trace recorder. Use of the trace recorder is optional.\r
+ See http://www.FreeRTOS.org/trace for more information. */\r
+ vTraceEnable( TRC_START );\r
+\r
+ /* Start the trace recording - the recording is written to a file if\r
+ configASSERT() is called. */\r
+ printf( "\r\nTrace started.\r\nThe trace will be dumped to disk if a call to configASSERT() fails.\r\n" );\r
+ printf( "Uncomment the call to kbhit() in this file to also dump trace with a key press.\r\n" );\r
+ uiTraceStart();\r
+ }\r
+ #endif\r
+\r
/* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top\r
of this file. */\r
#if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
}\r
#else\r
{\r
- /* Do not include trace code when performing a code coverage analysis. */\r
- #if( projCOVERAGE_TEST != 1 )\r
- {\r
- /* Initialise the trace recorder. Use of the trace recorder is optional.\r
- See http://www.FreeRTOS.org/trace for more information. */\r
- vTraceEnable( TRC_START );\r
-\r
- /* Start the trace recording - the recording is written to a file if\r
- configASSERT() is called. */\r
- printf( "\r\nTrace started.\r\nThe trace will be dumped to disk if a call to configASSERT() fails.\r\n" );\r
- printf( "Uncomment the call to kbhit() in this file to also dump trace with a key press.\r\n" );\r
- uiTraceStart();\r
- }\r
- #endif\r
-\r
main_full();\r
}\r
#endif\r