Skip to content

Commit dfcb2c6

Browse files
committed
Nordic: update application start address in GCC linker script
The S110 linker script is still using start address 0x16000, which was required by version 7.1 of the s110 SoftDevice. Update it to the current address, required by S110 v8.0.0.
1 parent 0d63774 commit dfcb2c6

File tree

1 file changed

+1
-1
lines changed
  • libraries/mbed/targets/cmsis/TARGET_NORDIC/TARGET_MCU_NRF51822/TOOLCHAIN_GCC_ARM/TARGET_MCU_NRF51_16K_S110

1 file changed

+1
-1
lines changed

libraries/mbed/targets/cmsis/TARGET_NORDIC/TARGET_MCU_NRF51822/TOOLCHAIN_GCC_ARM/TARGET_MCU_NRF51_16K_S110/NRF51822.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00016000, LENGTH = 0x2A000
5+
FLASH (rx) : ORIGIN = 0x00018000, LENGTH = 0x28000
66
RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000
77
}
88

0 commit comments

Comments
 (0)