diff --git a/src/stm32/Kconfig b/src/stm32/Kconfig index 8a7afc3d..1e0df93d 100644 --- a/src/stm32/Kconfig +++ b/src/stm32/Kconfig @@ -302,7 +302,7 @@ choice config STM32_FLASH_START_C000 bool "48KiB bootloader" if MACH_STM32F4x5 || MACH_STM32F401 config STM32_FLASH_START_10000 - bool "64KiB bootloader" if MACH_STM32F103 || MACH_STM32F4 + bool "64KiB bootloader" if MACH_STM32F103 || MACH_STM32F4 || MACH_N32G45x config STM32_FLASH_START_800 bool "2KiB bootloader" if MACH_STM32F103 diff --git a/src/stm32/Makefile b/src/stm32/Makefile index 0ee71dcf..3c158d51 100644 --- a/src/stm32/Makefile +++ b/src/stm32/Makefile @@ -94,7 +94,7 @@ src-$(CONFIG_HAVE_GPIO_SDIO) += stm32/sdio.c target-y += $(OUT)klipper.bin $(OUT)klipper.bin: $(OUT)klipper.elf - @echo " Creating hex file $@" + @echo " Creating bin file $@" $(Q)$(OBJCOPY) -O binary $< $@ # Flash rules