[Keyboard] Fix detection of Iris rev number used to set bootloader (#6226)
This commit is contained in:
parent
7ab99528d8
commit
2c41b69d3e
|
@ -7,7 +7,7 @@ F_USB = $(F_CPU)
|
||||||
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
||||||
# different sizes, comment this out, and the correct address will be loaded
|
# different sizes, comment this out, and the correct address will be loaded
|
||||||
# automatically (+60). See bootloader.mk for all options.
|
# automatically (+60). See bootloader.mk for all options.
|
||||||
ifeq ($(strip $(KEYBOARD)), iris/rev3)
|
ifneq (, $(findstring rev3, $(KEYBOARD)))
|
||||||
BOOTLOADER = qmk-dfu
|
BOOTLOADER = qmk-dfu
|
||||||
else
|
else
|
||||||
BOOTLOADER = caterina
|
BOOTLOADER = caterina
|
||||||
|
|
|
@ -38,8 +38,8 @@ F_USB = $(F_CPU)
|
||||||
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
||||||
# different sizes, comment this out, and the correct address will be loaded
|
# different sizes, comment this out, and the correct address will be loaded
|
||||||
# automatically (+60). See bootloader.mk for all options.
|
# automatically (+60). See bootloader.mk for all options.
|
||||||
ifeq ($(strip $(KEYBOARD)), nyquist/rev3)
|
ifneq (, $(findstring rev3, $(KEYBOARD)))
|
||||||
BOOTLOADER = dfu
|
BOOTLOADER = qmk-dfu
|
||||||
else
|
else
|
||||||
BOOTLOADER = caterina
|
BOOTLOADER = caterina
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue