Skip to content

Commit 2abeb3e

Browse files
larocheaggarg
andauthored
Demo/CORTEX_MPS2_QEMU_IAR_GCC: increase min stack size from 80 to 88 (FreeRTOS#1332)
Compiling this demo with picolibc 1.8.9 (as packaged with Debian trixie) results in a stack overflow. Increasing the minimal stack size from 80 to 88 bytes resolves this. (Debian trixie arm crosscompiler defaults to compile/link against picolibc and not newlib anymore.) Signed-off-by: Florian La Roche <[email protected]> Co-authored-by: Gaurav-Aggarwal-AWS <[email protected]>
1 parent fda472b commit 2abeb3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FreeRTOS/Demo/CORTEX_MPS2_QEMU_IAR_GCC/FreeRTOSConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#define configUSE_TICK_HOOK 1
4747
#define configCPU_CLOCK_HZ ( ( unsigned long ) 25000000 )
4848
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
49-
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 80 )
49+
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 88 )
5050
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 60 * 1024 ) )
5151
#define configMAX_TASK_NAME_LEN ( 12 )
5252

0 commit comments

Comments
 (0)