Skip to content

Commit

Permalink
Increase system stack's reserved memory size (#4025)
Browse files Browse the repository at this point in the history
Co-authored-by: あく <[email protected]>
  • Loading branch information
Astrrra and skotopes authored Dec 18, 2024
1 parent 256c1a1 commit 9917579
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion targets/f7/stm32wb55xx_flash.ld
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ENTRY(Reset_Handler)
/* Highest address of the user mode stack */
_stack_end = 0x20030000; /* end of RAM */
/* Generate a link error if heap and stack don't fit into RAM */
_stack_size = 0x200; /* required amount of stack */
_stack_size = 0x400; /* required amount of stack */

MEMORY {
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
Expand Down
2 changes: 1 addition & 1 deletion targets/f7/stm32wb55xx_ram_fw.ld
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ENTRY(Reset_Handler)
/* Highest address of the user mode stack */
_stack_end = 0x20030000; /* end of RAM */
/* Generate a link error if heap and stack don't fit into RAM */
_stack_size = 0x200; /* required amount of stack */
_stack_size = 0x400; /* required amount of stack */

MEMORY {
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
Expand Down

0 comments on commit 9917579

Please sign in to comment.