~ruther/qmk_firmware

2c41b69d3e253dc369006ae7ac6d2dd4193c529a — Danny 6 years ago 7ab9952
[Keyboard] Fix detection of Iris rev number used to set bootloader (#6226)

2 files changed, 3 insertions(+), 3 deletions(-)

M keyboards/keebio/iris/rules.mk
M keyboards/keebio/nyquist/rules.mk
M keyboards/keebio/iris/rules.mk => keyboards/keebio/iris/rules.mk +1 -1
@@ 7,7 7,7 @@ F_USB = $(F_CPU)
#     This definition is optional, and if your keyboard supports multiple bootloaders of
#     different sizes, comment this out, and the correct address will be loaded
#     automatically (+60). See bootloader.mk for all options.
ifeq ($(strip $(KEYBOARD)), iris/rev3)
ifneq (, $(findstring rev3, $(KEYBOARD)))
    BOOTLOADER = qmk-dfu
else
    BOOTLOADER = caterina

M keyboards/keebio/nyquist/rules.mk => keyboards/keebio/nyquist/rules.mk +2 -2
@@ 38,8 38,8 @@ F_USB = $(F_CPU)
#     This definition is optional, and if your keyboard supports multiple bootloaders of
#     different sizes, comment this out, and the correct address will be loaded
#     automatically (+60). See bootloader.mk for all options.
ifeq ($(strip $(KEYBOARD)), nyquist/rev3)
    BOOTLOADER = dfu
ifneq (, $(findstring rev3, $(KEYBOARD)))
    BOOTLOADER = qmk-dfu
else
    BOOTLOADER = caterina
endif