]> git.sur5r.net Git - freertos/commitdiff
Update main.c() for the WIN32-MingW project so the trace recorder is initialized...
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 7 Jan 2019 19:40:13 +0000 (19:40 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 7 Jan 2019 19:40:13 +0000 (19:40 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2623 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Demo/WIN32-MingW/main.c

index 0cbca38550f8beddef63aa81e0d427cba083b4f9..62f9aa563996389e7982029ac6ee83f3a6ff11e5 100644 (file)
@@ -141,6 +141,21 @@ int main( void )
        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
@@ -149,21 +164,6 @@ int main( void )
        }\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