diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-02-20 09:37:43 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-02-20 09:37:43 -0500 |
commit | c4edc7d946fd955a1d94dd888244bf11cd3b6326 (patch) | |
tree | 34b05103ab18049bfcf4e9506bb21e7e040b5cf2 /src | |
parent | 0a813f280534b390faf9e1f2f2e8ec41af25374b (diff) | |
download | kutter-c4edc7d946fd955a1d94dd888244bf11cd3b6326.tar.gz kutter-c4edc7d946fd955a1d94dd888244bf11cd3b6326.tar.xz kutter-c4edc7d946fd955a1d94dd888244bf11cd3b6326.zip |
stm32: Add support for 48KiB bootloaders
Reported by @mks-viva.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/stm32/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stm32/Kconfig b/src/stm32/Kconfig index 814858eb..646eb8bc 100644 --- a/src/stm32/Kconfig +++ b/src/stm32/Kconfig @@ -128,6 +128,8 @@ choice bool "28KiB bootloader" if MACH_STM32F103 config STM32_FLASH_START_8800 bool "34KiB bootloader (Chitu v6 Bootloader)" if MACH_STM32F103 + config STM32_FLASH_START_C000 + bool "48KiB bootloader (MKS Robin Nano V3)" if MACH_STM32F407 config STM32_FLASH_START_10000 bool "64KiB bootloader (Alfawise)" if MACH_STM32F103 config STM32_FLASH_START_800 @@ -150,6 +152,7 @@ config FLASH_START default 0x8007000 if STM32_FLASH_START_7000 default 0x8008000 if STM32_FLASH_START_8000 default 0x8008800 if STM32_FLASH_START_8800 + default 0x800C000 if STM32_FLASH_START_C000 default 0x8010000 if STM32_FLASH_START_10000 default 0x8000000 |