Decrease the configMINIMAL_STACK_SIZE setting to 190 to allow the demo to execute without running out of heap space.

This commit is contained in:
Richard Barry 2009-07-25 17:52:06 +00:00
parent 0528691833
commit af6c245366

View file

@ -69,7 +69,7 @@
#define configCPU_CLOCK_HZ ( ( unsigned portLONG ) 80000000UL ) #define configCPU_CLOCK_HZ ( ( unsigned portLONG ) 80000000UL )
#define configPERIPHERAL_CLOCK_HZ ( ( unsigned portLONG ) 40000000UL ) #define configPERIPHERAL_CLOCK_HZ ( ( unsigned portLONG ) 40000000UL )
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 ) #define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 )
#define configMINIMAL_STACK_SIZE ( 200 ) #define configMINIMAL_STACK_SIZE ( 190 )
#define configISR_STACK_SIZE ( 400 ) #define configISR_STACK_SIZE ( 400 )
#define configTOTAL_HEAP_SIZE ( ( size_t ) 28000 ) #define configTOTAL_HEAP_SIZE ( ( size_t ) 28000 )
#define configMAX_TASK_NAME_LEN ( 8 ) #define configMAX_TASK_NAME_LEN ( 8 )