From 8c5843179c28dba4c3107d9234b20dc518fb0a28 Mon Sep 17 00:00:00 2001 From: imi415 Date: Thu, 25 Nov 2021 23:36:28 +0800 Subject: [PATCH] S130 SoftDevice requires minimal 0x1FE8 memory. --- components/toolchain/gcc/nrf51_xxaa_sd.ld | 2 +- components/toolchain/gcc/nrf51_xxac_sd.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/toolchain/gcc/nrf51_xxaa_sd.ld b/components/toolchain/gcc/nrf51_xxaa_sd.ld index a3ec327..5870b91 100644 --- a/components/toolchain/gcc/nrf51_xxaa_sd.ld +++ b/components/toolchain/gcc/nrf51_xxaa_sd.ld @@ -6,7 +6,7 @@ GROUP(-lgcc -lc -lnosys) MEMORY { FLASH (rx) : ORIGIN = 0x0001B000, LENGTH = 0x25000 - RAM (rwx) : ORIGIN = 0x200013C8, LENGTH = 0x2C38 + RAM (rwx) : ORIGIN = 0x20001FE8, LENGTH = 0x2018 } diff --git a/components/toolchain/gcc/nrf51_xxac_sd.ld b/components/toolchain/gcc/nrf51_xxac_sd.ld index 9db9211..41d99b3 100644 --- a/components/toolchain/gcc/nrf51_xxac_sd.ld +++ b/components/toolchain/gcc/nrf51_xxac_sd.ld @@ -6,7 +6,7 @@ GROUP(-lgcc -lc -lnosys) MEMORY { FLASH (rx) : ORIGIN = 0x0001B000, LENGTH = 0x25000 - RAM (rwx) : ORIGIN = 0x200013C8, LENGTH = 0x6C38 + RAM (rwx) : ORIGIN = 0x20001FE8, LENGTH = 0x6018 }