diff options
author | Joel Challis <git@zvecr.com> | 2023-01-15 15:04:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 15:04:32 +0000 |
commit | 0730740add19d3afe3d96ead50ba7d29e5dcb109 (patch) | |
tree | 2831363e9c2bd7d683bc60ce7ba5b32c5ee2302e /builddefs | |
parent | a92071494a95175b44a1a3912110c9432f63f3ed (diff) |
Add mmoskal/uf2-stm32f103 bootloader support (#19594)
Diffstat (limited to 'builddefs')
-rw-r--r-- | builddefs/mcu_selection.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/builddefs/mcu_selection.mk b/builddefs/mcu_selection.mk index 382d9571a4..b566b1b5ac 100644 --- a/builddefs/mcu_selection.mk +++ b/builddefs/mcu_selection.mk @@ -275,7 +275,11 @@ ifneq ($(findstring STM32F103, $(MCU)),) # Linker script to use # - it should exist either in <chibios>/os/common/startup/ARMCMx/compilers/GCC/ld/ # or <keyboard_dir>/ld/ - MCU_LDSCRIPT ?= STM32F103x8 + ifeq ($(strip $(BOOTLOADER)), uf2boot) + MCU_LDSCRIPT ?= STM32F103xB_uf2boot + else + MCU_LDSCRIPT ?= STM32F103x8 + endif # Startup code to use # - it should exist in <chibios>/os/common/startup/ARMCMx/compilers/GCC/mk/ |