4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 18:03:31 +08:00

!27 [stm32] fix linkscript issue in stm32f411-atk-nano

Merge pull request !27 from RT-Thread/gitee_fix
This commit is contained in:
RT-Thread 2020-06-19 09:17:36 +08:00 committed by Gitee
commit c8211aa5c6

View File

@ -6,8 +6,8 @@
/* Program Entry, set to mark it as "used" and avoid gc */ /* Program Entry, set to mark it as "used" and avoid gc */
MEMORY MEMORY
{ {
ROM (rx) : ORIGIN = 0x08000000, LENGTH = 256 /* 256KB flash */ ROM (rx) : ORIGIN = 0x08000000, LENGTH = 256k /* 256KB flash */
RAM (rw) : ORIGIN = 0x20000000, LENGTH = 128k /* 128K sram */ RAM (rw) : ORIGIN = 0x20000000, LENGTH = 128k /* 128K sram */
} }
ENTRY(Reset_Handler) ENTRY(Reset_Handler)
_system_stack_size = 0x200; _system_stack_size = 0x200;