From 3ac35acfca63f2600ff0de3e1acea480e8594c22 Mon Sep 17 00:00:00 2001 From: Liam Kerr Date: Mon, 9 Feb 2026 21:00:25 +0000 Subject: [PATCH] increase stack size --- linker.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linker.ld b/linker.ld index f33640c..71b0565 100644 --- a/linker.ld +++ b/linker.ld @@ -28,7 +28,7 @@ SECTIONS /* Keep the stack at the very end to prevent it from overwriting code if it overflows */ . = ALIGN(16); PROVIDE(_stack_bottom = .); - . += 4096; + . += 16384; /* 16k stack */ PROVIDE(stack_top = .); . = ALIGN(4K);