diff options
author | JamesH1978 <87171443+JamesH1978@users.noreply.github.com> | 2022-04-25 17:07:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 12:07:48 -0400 |
commit | 542486fba7d241733e3a0ee2ef85c46cd027ff77 (patch) | |
tree | fc68809daf7c3af649e277d4e8211aff89aee14e | |
parent | dc28257a7547d282543d011dbe1e9b513a32a8ae (diff) | |
download | kutter-542486fba7d241733e3a0ee2ef85c46cd027ff77.tar.gz kutter-542486fba7d241733e3a0ee2ef85c46cd027ff77.tar.xz kutter-542486fba7d241733e3a0ee2ef85c46cd027ff77.zip |
stm32: Add 64kib bootloader offset option to STM32F401 (#5457)
This is needed for the Creality Ender 3 S1 with the STM32F401 chips to enable a 64kib bootloader offset
Signed-off-by: James Hartley <james@hartleyns.com>
-rw-r--r-- | src/stm32/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stm32/Kconfig b/src/stm32/Kconfig index c6df46b3..19e6aa55 100644 --- a/src/stm32/Kconfig +++ b/src/stm32/Kconfig @@ -196,7 +196,7 @@ choice config STM32_FLASH_START_C000 bool "48KiB bootloader (MKS Robin Nano V3)" if MACH_STM32F4x5 config STM32_FLASH_START_10000 - bool "64KiB bootloader" if MACH_STM32F103 || MACH_STM32F446 + bool "64KiB bootloader" if MACH_STM32F103 || MACH_STM32F446 || MACH_STM32F401 config STM32_FLASH_START_800 bool "2KiB bootloader (HID Bootloader)" if MACH_STM32F103 |