From: Tilman Sauerbeck Date: Sun, 16 Jun 2019 18:31:44 +0000 (+0200) Subject: bootloader: Fix address of SRAM in the target. X-Git-Url: http://git.code-monkey.de/?p=gps-watch.git;a=commitdiff_plain;h=2ba47a16e6f1c3f6870e7de21cd9ea09c9623d7a bootloader: Fix address of SRAM in the target. --- diff --git a/src/bootloader/bootloader.ld b/src/bootloader/bootloader.ld index 84b4387..8083a7e 100644 --- a/src/bootloader/bootloader.ld +++ b/src/bootloader/bootloader.ld @@ -8,7 +8,9 @@ MEMORY { FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x40000 /* 256k */ - RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x08000 /* 32k */ + + RAM (rwx) + : ORIGIN = 0x1fffe000, LENGTH = 0x08000 } /* Library configurations */