Increase minimal stack size config to 2048 words

Accomodates increased usage due to newlib thread local storage
pull/977/head
Paul Bartell committed by Paul Bartell
parent 63cfc621ed
commit 4408d7430e

@ -62,7 +62,7 @@ extern void vAssertCalled( const char * pcFileName,
#endif /* __NEWLIB__ */
#define configUSE_PREEMPTION 1
#define configUSE_TIME_SLICING 1
#define configUSE_TIME_SLICING 0
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 0
#define configUSE_IDLE_HOOK 1
@ -70,8 +70,7 @@ extern void vAssertCalled( const char * pcFileName,
#define configUSE_DAEMON_TASK_STARTUP_HOOK 0
#define configCPU_CLOCK_HZ ( ( unsigned long ) 20000000 )
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 2000 )
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 900 ) )
#define configMINIMAL_STACK_SIZE ( 2048 )
#define configMAX_TASK_NAME_LEN ( 10 )
#define configUSE_TRACE_FACILITY 1
#define configUSE_16_BIT_TICKS 0
@ -83,7 +82,6 @@ extern void vAssertCalled( const char * pcFileName,
#define configUSE_COUNTING_SEMAPHORES 1
#define configSUPPORT_DYNAMIC_ALLOCATION 1
#define configSUPPORT_STATIC_ALLOCATION 1
#define configNUM_TX_DESCRIPTORS 15
#define configSTREAM_BUFFER_TRIGGER_LEVEL_TEST_MARGIN 2
#define configQUEUE_REGISTRY_SIZE 20
#define configUSE_QUEUE_SETS 1

Loading…
Cancel
Save