Skip to content

Commit 6609dfb

Browse files
committed
[stm32] fix linkscript issue in stm32f411-atk-nano
1 parent 6e36f54 commit 6609dfb

File tree

1 file changed

+2
-2
lines changed
  • bsp/stm32/stm32f411-atk-nano/board/linker_scripts

1 file changed

+2
-2
lines changed

Diff for: bsp/stm32/stm32f411-atk-nano/board/linker_scripts/link.lds

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/* Program Entry, set to mark it as "used" and avoid gc */
77
MEMORY
88
{
9-
ROM (rx) : ORIGIN = 0x08000000, LENGTH = 256 /* 256KB flash */
10-
RAM (rw) : ORIGIN = 0x20000000, LENGTH = 128k /* 128K sram */
9+
ROM (rx) : ORIGIN = 0x08000000, LENGTH = 256k /* 256KB flash */
10+
RAM (rw) : ORIGIN = 0x20000000, LENGTH = 128k /* 128K sram */
1111
}
1212
ENTRY(Reset_Handler)
1313
_system_stack_size = 0x200;

0 commit comments

Comments
 (0)