diff options
author | rtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2013-12-27 15:49:59 +0000 |
---|---|---|
committer | rtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2013-12-27 15:49:59 +0000 |
commit | 047231a476ce65205907e55ad9f672fd880348ed (patch) | |
tree | 39eea598c98f5b914ae16aa7bdd13f1cc3f3b31c /FreeRTOS/Demo/WIN32-MSVC | |
parent | 2495829d0db7359332a66216e020282ee802c806 (diff) | |
download | freertos-047231a476ce65205907e55ad9f672fd880348ed.tar.gz |
Continue to remove unnecessary 'signed char *' casts from strings that are now just plain char * types.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2144 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Demo/WIN32-MSVC')
-rw-r--r-- | FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h b/FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h index b5e49564c..2860a25c7 100644 --- a/FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h +++ b/FreeRTOS/Demo/WIN32-MSVC/FreeRTOSConfig.h @@ -115,9 +115,14 @@ void vConfigureTimerForRunTimeStats( void ); #define configUSE_CO_ROUTINES 1
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
+/* This demo makes use of one or more example stats formatting functions. These
+format the raw data provided by the uxTaskGetSystemState() function in to human
+readable ASCII form. See the notes in the implementation of vTaskList() within
+FreeRTOS/Source/tasks.c for limitations. */
+#define configUSE_STATS_FORMATTING_FUNCTIONS 1
+
/* Set the following definitions to 1 to include the API function, or zero
to exclude the API function. */
-
#define INCLUDE_vTaskPrioritySet 1
#define INCLUDE_uxTaskPriorityGet 1
#define INCLUDE_vTaskDelete 1
|