From: richardbarry Date: Sun, 17 Feb 2008 21:11:52 +0000 (+0000) Subject: Increase stack size. X-Git-Tag: V4.7.2~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=893d66f4e78d9552adfe395da79d7584c9999d90;p=freertos Increase stack size. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@212 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/MB96340_Softune/FreeRTOS_96348hs_SK16FX100PMC/Src/FreeRTOSConfig.h b/Demo/MB96340_Softune/FreeRTOS_96348hs_SK16FX100PMC/Src/FreeRTOSConfig.h index 9981427f5..989bc15e4 100644 --- a/Demo/MB96340_Softune/FreeRTOS_96348hs_SK16FX100PMC/Src/FreeRTOSConfig.h +++ b/Demo/MB96340_Softune/FreeRTOS_96348hs_SK16FX100PMC/Src/FreeRTOSConfig.h @@ -73,6 +73,7 @@ when running the application using the EUROScope debugger. */ #define configUSE_PREEMPTION 1 #define configUSE_IDLE_HOOK 1 #define configUSE_TICK_HOOK 0 +#define configMINIMAL_STACK_SIZE ( ( unsigned portSHORT ) 120 ) #define configCPU_CLOCK_HZ ( ( unsigned portLONG ) 56000000 ) /* Clock setup from start.asm in the demo application. */ #define configCLKP1_CLOCK_HZ ( ( unsigned portLONG ) 56000000 ) /* Clock setup from start.asm in the demo application. */ #define configTICK_RATE_HZ ( (portTickType) 1000 ) @@ -84,12 +85,6 @@ when running the application using the EUROScope debugger. */ #define configUSE_MUTEXES 1 #define configUSE_TRACE_FACILITY 1 -#if( ( configMEMMODEL == portSMALL ) || ( configMEMMODEL == portMEDIUM ) ) - #define configMINIMAL_STACK_SIZE ( ( unsigned portSHORT ) 80 ) -#else - #define configMINIMAL_STACK_SIZE ( ( unsigned portSHORT ) 120 ) -#endif - /* Co-routine definitions. */ #define configUSE_CO_ROUTINES 1 #define configMAX_CO_ROUTINE_PRIORITIES ( 4 )