From 30424d83ff127506cff088a9b8a6e9079ca5d3e9 Mon Sep 17 00:00:00 2001 From: James Munns Date: Sat, 4 Nov 2023 13:17:54 +0100 Subject: [PATCH] Update RP2040 memory.x The RP2040 has 264KiB of memory, not 256KiB. --- examples/rp/memory.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rp/memory.x b/examples/rp/memory.x index aba861aae..6ed984938 100644 --- a/examples/rp/memory.x +++ b/examples/rp/memory.x @@ -1,5 +1,5 @@ MEMORY { BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100 FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100 - RAM : ORIGIN = 0x20000000, LENGTH = 256K -} \ No newline at end of file + RAM : ORIGIN = 0x20000000, LENGTH = 264K +}