Skip to content

Commit 9a073c0

Browse files
author
Marcus Chang
committed
Fix linker script for NRF52832/IAR
IAR linker script was using memory settings from the NRF52840 and not the NRF52832.
1 parent c29fe89 commit 9a073c0

File tree

1 file changed

+2
-2
lines changed
  • targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/device/TOOLCHAIN_IAR

1 file changed

+2
-2
lines changed

targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/device/TOOLCHAIN_IAR/nRF52832.icf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ if (MBED_APP_START == 0) {
1616
define symbol MBED_RAM_START = 0x20000000;
1717
define symbol MBED_RAM_SIZE = 0x10000;
1818
} else {
19-
define symbol MBED_RAM_START = 0x20003188;
20-
define symbol MBED_RAM_SIZE = 0x3CE78;
19+
define symbol MBED_RAM_START = 0x200031D0;
20+
define symbol MBED_RAM_SIZE = 0xCE30;
2121
}
2222

2323
define symbol MBED_RAM0_START = MBED_RAM_START;

0 commit comments

Comments
 (0)