mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Remove the queue registry from the MSP430X CCS port as the state viewer plug in does not work in CCS.
This commit is contained in:
parent
50cc4026db
commit
b77d801de0
|
@ -87,7 +87,7 @@
|
||||||
#define configUSE_16_BIT_TICKS 0
|
#define configUSE_16_BIT_TICKS 0
|
||||||
#define configIDLE_SHOULD_YIELD 1
|
#define configIDLE_SHOULD_YIELD 1
|
||||||
#define configUSE_MUTEXES 1
|
#define configUSE_MUTEXES 1
|
||||||
#define configQUEUE_REGISTRY_SIZE 5
|
#define configQUEUE_REGISTRY_SIZE 0
|
||||||
#define configGENERATE_RUN_TIME_STATS 1
|
#define configGENERATE_RUN_TIME_STATS 1
|
||||||
#define configCHECK_FOR_STACK_OVERFLOW 2
|
#define configCHECK_FOR_STACK_OVERFLOW 2
|
||||||
#define configUSE_RECURSIVE_MUTEXES 0
|
#define configUSE_RECURSIVE_MUTEXES 0
|
||||||
|
|
|
@ -257,10 +257,6 @@ void main( void )
|
||||||
attempt to use the queue. */
|
attempt to use the queue. */
|
||||||
if( xLCDQueue != NULL )
|
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. */
|
/* Create the standard demo tasks. */
|
||||||
vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );
|
vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );
|
||||||
vStartDynamicPriorityTasks();
|
vStartDynamicPriorityTasks();
|
||||||
|
|
Loading…
Reference in a new issue