From 03992c21d82f40bce41d7099df3f57413a6f05f9 Mon Sep 17 00:00:00 2001 From: William Vinnicombe Date: Wed, 29 Jan 2025 18:01:08 +0000 Subject: [PATCH] Increase stack size by 0x80 to provide some headroom --- enc_bootloader/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enc_bootloader/CMakeLists.txt b/enc_bootloader/CMakeLists.txt index f5c9e21..84e169a 100644 --- a/enc_bootloader/CMakeLists.txt +++ b/enc_bootloader/CMakeLists.txt @@ -51,7 +51,7 @@ if (NOT USE_PRECOMPILED) target_compile_definitions(enc_bootloader PRIVATE # use stack guards, as AES variables are written near the stack PICO_USE_STACK_GUARDS=1 - PICO_STACK_SIZE=0x100 + PICO_STACK_SIZE=0x180 # The following are to reduce the size of the binary PICO_NO_PROGRAM_INFO=1 # No spinlocks used