From 78b606e8254b0a5760f583b86395f83c4996c749 Mon Sep 17 00:00:00 2001 From: devdl11 <54149885+devdl11@users.noreply.github.com> Date: Sat, 19 Nov 2022 11:13:17 +0100 Subject: [PATCH] [bootloader] Fix e19 boot (#263) --- bootloader/interface/static/messages.h | 2 +- ion/src/device/bootloader/internal_flash.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootloader/interface/static/messages.h b/bootloader/interface/static/messages.h index e47764ac8..3623915ce 100644 --- a/bootloader/interface/static/messages.h +++ b/bootloader/interface/static/messages.h @@ -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"; diff --git a/ion/src/device/bootloader/internal_flash.ld b/ion/src/device/bootloader/internal_flash.ld index e441c6527..6a2555c35 100644 --- a/ion/src/device/bootloader/internal_flash.ld +++ b/ion/src/device/bootloader/internal_flash.ld @@ -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 }