From c29e0323020e0f96932d0f9b09747d5b2e28e5a6 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 24 Nov 2020 16:41:49 -0700 Subject: Changes to painic. It now prints the stack at the time of failure (if logging is initialized). --- linker/linker_script.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linker') diff --git a/linker/linker_script.ld b/linker/linker_script.ld index 909c8cb..8850182 100644 --- a/linker/linker_script.ld +++ b/linker/linker_script.ld @@ -54,7 +54,7 @@ SECTIONS *(.noinit); HEAP_START = .; - HEAP_STOP = 16k; + HEAP_STOP = LENGTH(sram1); } >sram1 AT>flash BSS_START = .; -- cgit