fix memory x file

This commit is contained in:
Robin Müller 2025-01-10 16:38:17 +01:00
parent cf55fe1504
commit 9e547668c2
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* Special linker script for application slot A with an offset at address 0x3000 */ /* Special linker script for application slot A with an offset at address 0x3000 */
MEMORY MEMORY
{ {
FLASH : ORIGIN = 0x00003000, LENGTH = 0xE800 FLASH : ORIGIN = 0x00003000, LENGTH = 0xE7FC
RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */ RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */
} }

View File

@ -1,7 +1,7 @@
/* Special linker script for application slot B */ /* Special linker script for application slot B */
MEMORY MEMORY
{ {
FLASH : ORIGIN = 0x000117FC, LENGTH = 0xE800 FLASH : ORIGIN = 0x000117FC, LENGTH = 0xE7FC
RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */ RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */
} }