From: richardbarry Date: Tue, 4 Jan 2011 14:37:53 +0000 (+0000) Subject: Remove the queue registry from the MSP430X CCS port as the state viewer plug in does... X-Git-Tag: V6.1.1~35 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fc61711b3903bfed9fd359d509070da62be43b37;p=freertos Remove the queue registry from the MSP430X CCS port as the state viewer plug in does not work in CCS. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1222 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/FreeRTOSConfig.h b/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/FreeRTOSConfig.h index 5faff83e0..aaa0c5a9b 100644 --- a/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/FreeRTOSConfig.h +++ b/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/FreeRTOSConfig.h @@ -87,7 +87,7 @@ #define configUSE_16_BIT_TICKS 0 #define configIDLE_SHOULD_YIELD 1 #define configUSE_MUTEXES 1 -#define configQUEUE_REGISTRY_SIZE 5 +#define configQUEUE_REGISTRY_SIZE 0 #define configGENERATE_RUN_TIME_STATS 1 #define configCHECK_FOR_STACK_OVERFLOW 2 #define configUSE_RECURSIVE_MUTEXES 0 diff --git a/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/main.c b/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/main.c index ba0b46bbf..58b2adc18 100644 --- a/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/main.c +++ b/Demo/MSP430X_MSP430F5438_CCS4/Demo_Source/main.c @@ -257,10 +257,6 @@ void main( void ) attempt to use the queue. */ if( xLCDQueue != NULL ) { - /* Add the created queue to the queue registry so it can be viewed in - the IAR FreeRTOS state viewer plug-in. */ - vQueueAddToRegistry( xLCDQueue, ( signed char * ) "LCDQueue" ); - /* Create the standard demo tasks. */ vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED ); vStartDynamicPriorityTasks();