]> git.sur5r.net Git - freertos/commitdiff
Add the new configINCLUDE_STATS_FORMATTING_FUNCTIONS configuration parameter to FreeR...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 2 Jul 2013 12:17:26 +0000 (12:17 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 2 Jul 2013 12:17:26 +0000 (12:17 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1962 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS-Plus/Demo/FreeRTOS_Plus_CLI_with_Trace_Windows_Simulator/FreeRTOSConfig.h
FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/ConfigurationFiles/FreeRTOSConfig.h
FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/File-Releated-CLI-commands.c
FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC/FreeRTOSConfig.h
FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_Windows_Simulator/FreeRTOSConfig.h

index 428decc0e66bb1bf75acf71454ae07a5bd2a1b04..e6efafb9f472809dc47fd8f87e0a8f10dfae9896 100644 (file)
@@ -135,6 +135,12 @@ to exclude the API function. */
 #define INCLUDE_uxTaskGetStackHighWaterMark    1\r
 #define INCLUDE_xTaskGetSchedulerState         1\r
 \r
+/* This demo makes use of one or more example stats formatting functions.  These\r
+format the raw data provided by the xTaskGetSystemState() function in to human\r
+readable ASCII form.  See the notes in the implementation of vTaskList() within \r
+FreeRTOS/Source/tasks.c for limitations. */\r
+#define configINCLUDE_STATS_FORMATTING_FUNCTIONS       1\r
+\r
 /* Run time stats gathering definitions. */\r
 unsigned long ulGetRunTimeCounterValue( void );\r
 void vConfigureTimerForRunTimeStats( void );\r
index 35116afcae361d3f35dc13096b3d8277992adf85..a6c87a6e6d84e3253c42626b6ae29c0435f828b6 100644 (file)
@@ -145,6 +145,12 @@ to exclude the API function. */
 #define INCLUDE_xTaskGetIdleTaskHandle         0\r
 #define INCLUDE_xQueueGetMutexHolder           1\r
 \r
+/* This demo makes use of one or more example stats formatting functions.  These\r
+format the raw data provided by the xTaskGetSystemState() function in to human\r
+readable ASCII form.  See the notes in the implementation of vTaskList() within \r
+FreeRTOS/Source/tasks.c for limitations. */\r
+#define configINCLUDE_STATS_FORMATTING_FUNCTIONS       1\r
+\r
 /* Assert call defined for debug builds. */\r
 #ifdef _DEBUG\r
        extern void vAssertCalled( const char *pcFile, unsigned long ulLine );\r
index 6586f079ad81bdc4c761ef9f58be94a79d968604..ef8e791f823f88e93efbb10bf30a534e9cf27f48 100644 (file)
@@ -196,8 +196,8 @@ static const CLI_Command_Definition_t xCOPY =
 file system driver tests. */\r
 static const CLI_Command_Definition_t xTEST_FS =\r
 {\r
-       ( const int8_t * const ) "testfs", /* The command string to type. */\r
-       ( const int8_t * const ) "\r\ntest_fs:\r\n Executes some file system test.  ALL FILES WILL BE DELETED!!!\r\n",\r
+       ( const int8_t * const ) "test-fs", /* The command string to type. */\r
+       ( const int8_t * const ) "\r\ntest-fs:\r\n Executes file system tests.  ALL FILES WILL BE DELETED!!!\r\n",\r
        prvTESTFSCommand, /* The function to run. */\r
        0 /* No parameters are expected. */\r
 };\r
index 48d92c54a6669ad16d088035accedbb14b990215..ddef22ecb9e0b6a284649cfb9ef0371b4d9b5c06 100644 (file)
@@ -146,6 +146,12 @@ to exclude the API function. */
 #define INCLUDE_xTaskGetIdleTaskHandle         0\r
 #define INCLUDE_xQueueGetMutexHolder           1\r
 \r
+/* This demo makes use of one or more example stats formatting functions.  These\r
+format the raw data provided by the xTaskGetSystemState() function in to human\r
+readable ASCII form.  See the notes in the implementation of vTaskList() within \r
+FreeRTOS/Source/tasks.c for limitations. */\r
+#define configINCLUDE_STATS_FORMATTING_FUNCTIONS       1\r
+\r
 /* Assert statement defined for debug builds. */\r
 #ifdef DEBUG\r
        #define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }\r
index c0f4bc63cc0b7781ae51ecac2f7fa07efbf84e99..d942a7030c07d7106576487bb21fbeba815b9d35 100644 (file)
@@ -145,6 +145,12 @@ to exclude the API function. */
 #define INCLUDE_xTaskGetIdleTaskHandle         0\r
 #define INCLUDE_xQueueGetMutexHolder           1\r
 \r
+/* This demo makes use of one or more example stats formatting functions.  These\r
+format the raw data provided by the xTaskGetSystemState() function in to human\r
+readable ASCII form.  See the notes in the implementation of vTaskList() within \r
+FreeRTOS/Source/tasks.c for limitations. */\r
+#define configINCLUDE_STATS_FORMATTING_FUNCTIONS       1\r
+\r
 /* Assert call defined for debug builds. */\r
 #ifdef _DEBUG\r
        extern void vAssertCalled( void );\r