Skip to content

Commit

Permalink
build(core): increase stack size
Browse files Browse the repository at this point in the history
  • Loading branch information
onvej-sl committed Feb 20, 2025
1 parent 2181bb1 commit 1b34e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/embed/sys/linker/stm32f4/firmware.ld
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ SECTIONS {
} >FLASH AT>FLASH

.stack : ALIGN(8) {
. = 16K; /* Exactly 16K allocated for stack. Overflow causes MemManage fault (when using MPU). */
. = 32K; /* Exactly 32K allocated for stack. Overflow causes MemManage fault (when using MPU). */
} >AUX1_RAM

.data : ALIGN(4) {
Expand Down

0 comments on commit 1b34e95

Please sign in to comment.