[stm32][gcc] 修复栈为0的bug,将栈扩展到0x400(与Keil IAR一致)

This commit is contained in:
Meco Man
2021-12-03 09:57:56 -05:00
parent bb8f269104
commit 7b5e6a81f9
82 changed files with 85 additions and 84 deletions

View File

@@ -10,7 +10,7 @@ MEMORY
RAM (rw) : ORIGIN = 0x20000000, LENGTH = 128k /* 128K sram */
}
ENTRY(Reset_Handler)
_system_stack_size = 0x000;
_system_stack_size = 0x400;
SECTIONS
{