From: richardbarry Date: Tue, 12 Feb 2013 10:59:58 +0000 (+0000) Subject: Reduce RAM used by trace by updating trcConfig.h. X-Git-Tag: V7.4.0~8 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3ce076c026fca759c693f3584a018f08329bb070;p=freertos Reduce RAM used by trace by updating trcConfig.h. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1823 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/FreeRTOS/Demo/WIN32-MSVC/Trace_Recorder_Configuration/trcConfig.h b/FreeRTOS/Demo/WIN32-MSVC/Trace_Recorder_Configuration/trcConfig.h index 19b38d729..a2188b209 100644 --- a/FreeRTOS/Demo/WIN32-MSVC/Trace_Recorder_Configuration/trcConfig.h +++ b/FreeRTOS/Demo/WIN32-MSVC/Trace_Recorder_Configuration/trcConfig.h @@ -112,11 +112,11 @@ * NOTE 3: The FreeRTOS timer task creates a Queue, that should be accounted * for in NQueue. ******************************************************************************/ -#define NTask 500 -#define NISR 500 -#define NQueue 500 -#define NSemaphore 500 -#define NMutex 500 +#define NTask ( 200 ) +#define NISR ( 200 ) +#define NQueue ( 200 ) +#define NSemaphore ( 200 ) +#define NMutex ( 200 ) /* Maximum object name length for each class (includes zero termination) */ #define NameLenTask configMAX_TASK_NAME_LEN diff --git a/FreeRTOS/Demo/WIN32-MSVC/WIN32.suo b/FreeRTOS/Demo/WIN32-MSVC/WIN32.suo index ca909d394..4e80022d3 100644 Binary files a/FreeRTOS/Demo/WIN32-MSVC/WIN32.suo and b/FreeRTOS/Demo/WIN32-MSVC/WIN32.suo differ