From 763d5ab37f3385fd00acf6321c5283ffb137da7d Mon Sep 17 00:00:00 2001 From: rtel Date: Tue, 26 Aug 2014 16:53:40 +0000 Subject: [PATCH] Lower the minimum stack size used by the ATSAMA5 demo. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2292 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- .../Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/FreeRTOSConfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/FreeRTOSConfig.h b/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/FreeRTOSConfig.h index e47cadf5c..4906c83f3 100644 --- a/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/FreeRTOSConfig.h +++ b/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/FreeRTOSConfig.h @@ -86,7 +86,7 @@ #define configUSE_IDLE_HOOK 1 #define configUSE_TICK_HOOK 1 #define configMAX_PRIORITIES ( 5 ) -#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 150 ) +#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 100 ) #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 42 * 1024 ) ) #define configMAX_TASK_NAME_LEN ( 10 ) #define configUSE_TRACE_FACILITY 1 @@ -136,7 +136,7 @@ http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-MPUs-without-a-GIC.html */ /* Cortex-A specific setting: The address of the register within the interrupt controller from which the address of the current interrupt's handling function can be obtained. See: -http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-MPUs-without-a-GIC.html +http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-MPUs-without-a-GIC.html */ #define configINTERRUPT_VECTOR_ADDRESS 0xFFFFF010UL /* Cortex-A specific setting: The address of End of Interrupt register within -- 2.39.2