commit 61702b25648a4ffb8ae42b739f7134f4709e393a
parent a4760c4d1b03e1006eb62ca72ecc22e0e6ea44bb
Author: Joel Challis <git@zvecr.com>
Date: Mon, 25 Sep 2023 04:05:28 +0100
Set default board files for uf2boot bootloader (#22129)
Diffstat:
3 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/keyboards/jacky_studio/piggy60/rev2/info.json b/keyboards/jacky_studio/piggy60/rev2/info.json
@@ -1,5 +1,4 @@
{
- "board": "STM32_F103_STM32DUINO",
"bootloader": "uf2boot",
"diode_direction": "ROW2COL",
"community_layouts": ["60_hhkb", "60_tsangan_hhkb"],
diff --git a/keyboards/ymdk/id75/info.json b/keyboards/ymdk/id75/info.json
@@ -3,7 +3,6 @@
"keyboard_name": "Idobao x YMDK ID75",
"maintainer": "qmk",
"bootloader": "uf2boot",
- "board": "STM32_F103_STM32DUINO",
"diode_direction": "ROW2COL",
"features": {
"bootmagic": true,
diff --git a/platforms/chibios/bootloader.mk b/platforms/chibios/bootloader.mk
@@ -107,6 +107,7 @@ ifeq ($(strip $(BOOTLOADER)), tinyuf2)
endif
ifeq ($(strip $(BOOTLOADER)), uf2boot)
OPT_DEFS += -DBOOTLOADER_UF2BOOT
+ BOARD = STM32_F103_STM32DUINO
BOOTLOADER_TYPE = uf2boot
FIRMWARE_FORMAT = uf2
endif