Skip to content

Commit

Permalink
Merge pull request vial-kb#684 from lesshonor/fix/avr_detection
Browse files Browse the repository at this point in the history
fix: detect CONVERT_TO vs MCU in rules.mk
  • Loading branch information
xyzz authored Feb 29, 2024
2 parents efc1f6f + 7b8545b commit e585657
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion keyboards/argo_works/ishi/80/mk0_avr/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ VIA_ENABLE = yes
VIAL_ENABLE = yes
LTO_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
MAGIC_ENABLE = no
SPACE_CADET_ENABLE = no
COMBO_ENABLE = no
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VIA_ENABLE = yes
VIAL_ENABLE = yes
LTO_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
MAGIC_ENABLE = no
SPACE_CADET_ENABLE = no
COMBO_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/boardsource/lulu/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VIAL_ENABLE = yes

VIALRGB_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
QMK_SETTINGS = no
COMBO_ENABLE = no
MOUSEKEY_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/handwired/prkl30/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ EXTRAKEY_ENABLE = yes
CONSOLE_ENABLE = no
COMMAND_ENABLE = no

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
QMK_SETTINGS = no
endif
2 changes: 1 addition & 1 deletion keyboards/mechwild/bde/rev2/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TAP_DANCE_ENABLE = yes
GRAVE_ESC_ENABLE = yes
SPACE_CADET_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
QMK_SETTINGS = no

KEY_OVERRIDE_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/mechwild/clunker/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VIAL_ENABLE = yes
LTO_ENABLE = yes
ENCODER_MAP_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
MAGIC_ENABLE = no
SPACE_CADET_ENABLE = no
#TAP_DANCE_ENABLE = no # if space becomes an issue, uncomment
Expand Down
2 changes: 1 addition & 1 deletion keyboards/mechwild/mokulua/mirrored/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VIAL_ENABLE = yes

ENCODER_MAP_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
QMK_SETTINGS = no

MAGIC_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/mechwild/mokulua/standard/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VIAL_ENABLE = yes

ENCODER_MAP_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
QMK_SETTINGS = no

MAGIC_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/mechwild/murphpad/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENCODER_MAP_ENABLE = yes
MOUSEKEY_ENABLE = yes
COMBOS_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)),)
QMK_SETTINGS = no
TAP_DANCE_ENABLE = no
KEY_OVERRIDE_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/reedskeebs/alish40/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ENCODER_MAP_ENABLE = yes
VIA_ENABLE = yes
VIAL_ENABLE = yes

ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
GRAVE_ESC_ENABLE = no
KEY_OVERRIDE_ENABLE = no
LTO_ENABLE = yes
Expand Down
2 changes: 1 addition & 1 deletion keyboards/splitkb/aurora/lily58/rev1/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VIA_ENABLE = yes
VIAL_ENABLE = yes

# Saving space on atmega32u4
ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
OLED_ENABLE = no
MOUSEKEY_ENABLE = no
COMBO_ENABLE = no
Expand Down
2 changes: 1 addition & 1 deletion keyboards/tweetydabird/lotus58/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ VIAL_ENABLE = yes
ENCODER_MAP_ENABLE = yes

# Reduce size on atmega32u4
ifeq ($(strip $(MCU)), atmega32u4)
ifeq ($(strip $(CONVERT_TO)), )
TAP_DANCE_ENABLE = no
QMK_SETTINGS = no
KEY_OVERRIDE_ENABLE = no
Expand Down

0 comments on commit e585657

Please sign in to comment.