From e5e1d7cede4e2f90577b389a2c1112dee389370a Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Sat, 4 Oct 2025 18:41:40 +0200 Subject: [PATCH] Modify memory.x to reserve only as much RAM for the softdevice as necessary --- memory.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memory.x b/memory.x index ee2f0fa..771c982 100644 --- a/memory.x +++ b/memory.x @@ -3,5 +3,5 @@ MEMORY /* NOTE 1 K = 1 KiB = 1024 bytes */ /* These values correspond to the NRF52832 with SoftDevice S112 v7.x */ FLASH : ORIGIN = 0x00000000 + 100K, LENGTH = 512K - 100K - RAM : ORIGIN = 0x20000000 + 30K, LENGTH = 64K - 30K + RAM : ORIGIN = 0x20000000 + 0x24b8, LENGTH = 64K - 0x24b8 }