Skip to content

Commit 3300d28

Browse files
committed
nrf51_16k_s130 Fix flash origin for APP_CODE_BASE
For details see: http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.s130.sds%2Fdita%2Fsoftdevices%2Fs130%2Fmem_usage%2Fmem_resource_reqs.html Set the ram start to 0x20002ef8 to be consistent with ATM_STD and IAR linker scripts
1 parent db73ed0 commit 3300d28

File tree

1 file changed

+2
-2
lines changed
  • targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF51/TARGET_MCU_NRF51822_UNIFIED/device/TOOLCHAIN_GCC_ARM/TARGET_MCU_NRF51_16K_S130

1 file changed

+2
-2
lines changed

targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF51/TARGET_MCU_NRF51822_UNIFIED/device/TOOLCHAIN_GCC_ARM/TARGET_MCU_NRF51_16K_S130/NRF51822.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x0001C000, LENGTH = 0x24000
6-
RAM (rwx) : ORIGIN = 0x20002800, LENGTH = 0x1800
5+
FLASH (rx) : ORIGIN = 0x0001B000, LENGTH = 0x24000
6+
RAM (rwx) : ORIGIN = 0x20002ef8, LENGTH = 0x1108
77
}
88

99
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")

0 commit comments

Comments
 (0)