Add f303 to tinyuf2 bootloader support (#19620)
This commit is contained in:
parent
dcd532830d
commit
82a94ea1bd
3 changed files with 95 additions and 3 deletions
|
@ -313,7 +313,11 @@ ifneq ($(findstring STM32F303, $(MCU)),)
|
|||
# Linker script to use
|
||||
# - it should exist either in <chibios>/os/common/startup/ARMCMx/compilers/GCC/ld/
|
||||
# or <keyboard_dir>/ld/
|
||||
MCU_LDSCRIPT ?= STM32F303xC
|
||||
ifeq ($(strip $(BOOTLOADER)), tinyuf2)
|
||||
MCU_LDSCRIPT ?= STM32F303xC_tinyuf2
|
||||
else
|
||||
MCU_LDSCRIPT ?= STM32F303xC
|
||||
endif
|
||||
|
||||
# Startup code to use
|
||||
# - it should exist in <chibios>/os/common/startup/ARMCMx/compilers/GCC/mk/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue