|
@@ -28,6 +28,7 @@
|
|
# bootloadHID HIDBootFlash compatible (ATmega32A)
|
|
# bootloadHID HIDBootFlash compatible (ATmega32A)
|
|
# USBasp USBaspLoader (ATmega328P)
|
|
# USBasp USBaspLoader (ATmega328P)
|
|
# kiibohd Input:Club Kiibohd bootloader (only used on their boards)
|
|
# kiibohd Input:Club Kiibohd bootloader (only used on their boards)
|
|
|
|
+# stm32duino STM32Duino (STM32F103x8)
|
|
#
|
|
#
|
|
# BOOTLOADER_SIZE can still be defined manually, but it's recommended
|
|
# BOOTLOADER_SIZE can still be defined manually, but it's recommended
|
|
# you add any possible configuration to this list
|
|
# you add any possible configuration to this list
|
|
@@ -106,3 +107,14 @@ ifeq ($(strip $(BOOTLOADER)), kiibohd)
|
|
DFU_ARGS = -d 1C11:B007
|
|
DFU_ARGS = -d 1C11:B007
|
|
DFU_SUFFIX_ARGS = -v 1C11 -p B007
|
|
DFU_SUFFIX_ARGS = -v 1C11 -p B007
|
|
endif
|
|
endif
|
|
|
|
+
|
|
|
|
+ifeq ($(strip $(BOOTLOADER)), stm32duino)
|
|
|
|
+ OPT_DEFS += -DBOOTLOADER_STM32DUINO
|
|
|
|
+ MCU_LDSCRIPT ?= STM32F103x8_stm32duino_bootloader
|
|
|
|
+ BOARD = STM32_F103_STM32DUINO
|
|
|
|
+ # STM32F103 does NOT have an USB bootloader in ROM (only serial), so setting anything here does not make much sense
|
|
|
|
+ STM32_BOOTLOADER_ADDRESS = 0x80000000
|
|
|
|
+
|
|
|
|
+ DFU_ARGS = -d 1EAF:0003 -a2 -R
|
|
|
|
+ DFU_SUFFIX_ARGS = -v 1EAF -p 0003
|
|
|
|
+endif
|