From 3a76aa6ef69c4a38ea755f108b4106ac3c330fc4 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Fri, 3 Oct 2025 00:33:31 +0200 Subject: [PATCH] Make memory.x more similar to the nRF52810 version --- memory.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memory.x b/memory.x index 6f9b940..ee2f0fa 100644 --- a/memory.x +++ b/memory.x @@ -2,6 +2,6 @@ MEMORY { /* NOTE 1 K = 1 KiB = 1024 bytes */ /* These values correspond to the NRF52832 with SoftDevice S112 v7.x */ - FLASH : ORIGIN = 100K, LENGTH = 512K - 100K + FLASH : ORIGIN = 0x00000000 + 100K, LENGTH = 512K - 100K RAM : ORIGIN = 0x20000000 + 30K, LENGTH = 64K - 30K }