From 9e547668c276baa231deb2296da7dc749c9d53ba Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 10 Jan 2025 16:38:17 +0100 Subject: [PATCH] fix memory x file --- flashloader/slot-a-blinky/memory.x | 2 +- flashloader/slot-b-blinky/memory.x | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flashloader/slot-a-blinky/memory.x b/flashloader/slot-a-blinky/memory.x index f64b2c6..a9daa25 100644 --- a/flashloader/slot-a-blinky/memory.x +++ b/flashloader/slot-a-blinky/memory.x @@ -1,7 +1,7 @@ /* Special linker script for application slot A with an offset at address 0x3000 */ MEMORY { - FLASH : ORIGIN = 0x00003000, LENGTH = 0xE800 + FLASH : ORIGIN = 0x00003000, LENGTH = 0xE7FC RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */ } diff --git a/flashloader/slot-b-blinky/memory.x b/flashloader/slot-b-blinky/memory.x index e499487..f5ac660 100644 --- a/flashloader/slot-b-blinky/memory.x +++ b/flashloader/slot-b-blinky/memory.x @@ -1,7 +1,7 @@ /* Special linker script for application slot B */ MEMORY { - FLASH : ORIGIN = 0x000117FC, LENGTH = 0xE800 + FLASH : ORIGIN = 0x000117FC, LENGTH = 0xE7FC RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */ } -- 2.43.0