bootloader: Fix address of SRAM in the target.
authorTilman Sauerbeck <tilman@code-monkey.de>
Sun, 16 Jun 2019 18:31:44 +0000 (20:31 +0200)
committerTilman Sauerbeck <tilman@code-monkey.de>
Sun, 7 Jul 2019 07:58:43 +0000 (09:58 +0200)
src/bootloader/bootloader.ld

index 84b4387469e6177cf8de4ac0b015ed7548e1632a..8083a7e40a6c1014c24700ce5d280b8b9ddbae21 100644 (file)
@@ -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 */