[bootloader] Fix e19 boot (#263)

This commit is contained in:
devdl11
2022-11-19 11:13:17 +01:00
committed by GitHub
parent 1d00d7d9d3
commit 78b606e825
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ public:
constexpr static const char * aboutMessage4 = "and select the OS";
constexpr static const char * aboutMessage5 = "to boot.";
constexpr static const char * bootloaderVersion = "Version 1.0.0 - FREED0M";
constexpr static const char * bootloaderVersion = "Version 1.0.1 - FREED0M.19";
//USB NAMES
constexpr static const char * usbUpsilonBootloader = "Upsilon Bootloader";

View File

@@ -1,7 +1,7 @@
/* Same as flash.ld but everything is linked in internal flash */
MEMORY {
INTERNAL_FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 64K
INTERNAL_FLASH (rx) : ORIGIN = 0x00200000, LENGTH = 64K
SRAM (rw) : ORIGIN = 0x20000000, LENGTH = 256K
}