]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS-Plus/Demo_Projects_Using_FreeRTOS_Simulator/FreeRTOS_Plus_CLI_with_Trace/CLI-commands.c
Prepare for V7.2.0 release.
[freertos] / FreeRTOS-Plus / Demo_Projects_Using_FreeRTOS_Simulator / FreeRTOS_Plus_CLI_with_Trace / CLI-commands.c
index 21025e590d0a7f02ef925ce8d06c8f44da8102b2..220580c56e3b8d764fadaeef50920675e4184e0f 100644 (file)
@@ -108,7 +108,7 @@ static portBASE_TYPE prvStartStopTraceCommand( int8_t *pcWriteBuffer, size_t xWr
 static const CLI_Command_Definition_t xRunTimeStats =\r
 {\r
        ( const int8_t * const ) "run-time-stats", /* The command string to type. */\r
-       ( const int8_t * const ) "run-time-stats: Displays a table showing how much processing time each FreeRTOS task has used\r\n",\r
+       ( const int8_t * const ) "\r\nrun-time-stats:\r\n Displays a table showing how much processing time each FreeRTOS task has used\r\n\r\n",\r
        prvRunTimeStatsCommand, /* The function to run. */\r
        0 /* No parameters are expected. */\r
 };\r
@@ -117,7 +117,7 @@ static const CLI_Command_Definition_t xRunTimeStats =
 static const CLI_Command_Definition_t xTaskStats =\r
 {\r
        ( const int8_t * const ) "task-stats", /* The command string to type. */\r
-       ( const int8_t * const ) "task-stats: Displays a table showing the state of each FreeRTOS task\r\n",\r
+       ( const int8_t * const ) "\r\ntask-stats:\r\n Displays a table showing the state of each FreeRTOS task\r\n\r\n",\r
        prvTaskStatsCommand, /* The function to run. */\r
        0 /* No parameters are expected. */\r
 };\r
@@ -128,7 +128,7 @@ time. */
 static const CLI_Command_Definition_t xThreeParameterEcho =\r
 {\r
        ( const int8_t * const ) "echo_3_parameters",\r
-       ( const int8_t * const ) "echo_3_parameters: <param1> <param2> <param3> Expects three parameters, echos each in turn\r\n",\r
+       ( const int8_t * const ) "\r\necho_3_parameters <param1> <param2> <param3>:\r\n Expects three parameters, echos each in turn\r\n\r\n",\r
        prvThreeParameterEchoCommand, /* The function to run. */\r
        3 /* Three parameters are expected, which can take any value. */\r
 };\r
@@ -139,7 +139,7 @@ a time. */
 static const CLI_Command_Definition_t xParameterEcho =\r
 {\r
        ( const int8_t * const ) "echo_parameters",\r
-       ( const int8_t * const ) "echo_parameters: <...> Take variable number of parameters, echos each in turn\r\n",\r
+       ( const int8_t * const ) "\r\necho_parameters <...>:\r\n Take variable number of parameters, echos each in turn\r\n\r\n",\r
        prvParameterEchoCommand, /* The function to run. */\r
        -1 /* The user can enter any number of commands. */\r
 };\r
@@ -149,7 +149,7 @@ parameter, which can be either "start" or "stop". */
 static const CLI_Command_Definition_t xStartTrace =\r
 {\r
        ( const int8_t * const ) "trace",\r
-       ( const int8_t * const ) "trace: [start | stop] Starts or stops a trace recording for viewing in FreeRTOS+Trace\r\n",\r
+       ( const int8_t * const ) "\r\ntrace [start | stop]:\r\n Starts or stops a trace recording for viewing in FreeRTOS+Trace\r\n\r\n",\r
        prvStartStopTraceCommand, /* The function to run. */\r
        1 /* One parameter is expected.  Valid values are "start" and "stop". */\r
 };\r