diff options
Diffstat (limited to 'src/stm32')
-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 bd0388da..99a0e042 100644 --- a/src/stm32/Kconfig +++ b/src/stm32/Kconfig @@ -116,6 +116,8 @@ choice bool "28KiB bootloader" if MACH_STM32F103 config STM32_FLASH_START_8000 bool "32KiB bootloader (SKR-PRO or TFT35-V3.0)" if MACH_STM32F207 || MACH_STM32F407 + config STM32_FLASH_START_8800 + bool "34KiB bootloader (Chitu v6 Bootloader)" if MACH_STM32F103 config STM32_FLASH_START_10000 bool "64KiB bootloader (Alfawise)" if MACH_STM32F103 config STM32_FLASH_START_0000 @@ -129,6 +131,7 @@ config FLASH_START default 0x8005000 if STM32_FLASH_START_5000 default 0x8007000 if STM32_FLASH_START_7000 default 0x8008000 if STM32_FLASH_START_8000 + default 0x8008800 if STM32_FLASH_START_8800 default 0x8010000 if STM32_FLASH_START_10000 default 0x8000000 |