1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 12:51:22 +04:00

Increase system stack's reserved memory size (#4025)

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Astra
2024-12-18 21:23:29 +02:00
committed by GitHub
parent 256c1a1140
commit 9917579619
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ ENTRY(Reset_Handler)
/* Highest address of the user mode stack */ /* Highest address of the user mode stack */
_stack_end = 0x20030000; /* end of RAM */ _stack_end = 0x20030000; /* end of RAM */
/* Generate a link error if heap and stack don't fit into 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 { MEMORY {
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K

View File

@@ -3,7 +3,7 @@ ENTRY(Reset_Handler)
/* Highest address of the user mode stack */ /* Highest address of the user mode stack */
_stack_end = 0x20030000; /* end of RAM */ _stack_end = 0x20030000; /* end of RAM */
/* Generate a link error if heap and stack don't fit into 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 { MEMORY {
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K