mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-04 14:44:16 -04:00
Fixed bugs
- fixed duplciate defines for KLOR LAYOUT - Typo in qmk.json
This commit is contained in:
parent
15e8c45d15
commit
f07b0203d0
5 changed files with 11 additions and 9 deletions
|
@ -11,4 +11,4 @@ HAPTIC_ENABLE = no
|
|||
RGB_MATRIX_ENABLE = no
|
||||
|
||||
# Choose your layout
|
||||
KLOR_LAYOUT = polydactyl
|
||||
KLOR_CONFIG = polydactyl
|
|
@ -11,4 +11,4 @@ HAPTIC_ENABLE = yes
|
|||
RGB_MATRIX_ENABLE = yes
|
||||
|
||||
# Choose your layout
|
||||
KLOR_LAYOUT = saegewerk
|
||||
KLOR_CONFIG = saegewerk
|
|
@ -1,6 +1,5 @@
|
|||
# override userspace defaults
|
||||
|
||||
|
||||
# override keyboard defaults
|
||||
# keyboards\klor\info.json
|
||||
# keyboards\klor\rules.mk
|
||||
|
@ -9,3 +8,6 @@ AUDIO_ENABLE = yes
|
|||
MUSIC_ENABLE = yes
|
||||
HAPTIC_ENABLE = yes
|
||||
RGB_MATRIX_ENABLE = yes
|
||||
|
||||
# Choose your layout
|
||||
KLOR_CONFIG = saegewerk
|
|
@ -1,9 +1,9 @@
|
|||
VALID_KLOR_LAYOUTS := polydactyl konrad yubitsume saegewerk
|
||||
VALID_KLOR_CONFIG := polydactyl konrad yubitsume saegewerk
|
||||
|
||||
ifeq ($(filter $(KLOR_LAYOUT),$(VALID_KLOR_LAYOUTS)),)
|
||||
$(call CATASTROPHIC_ERROR,Invalid KLOR_LAYOUT,KLOR_LAYOUT="$(KLOR_LAYOUT)" is not a valid KLOR Layout)
|
||||
ifeq ($(filter $(KLOR_CONFIG),$(VALID_KLOR_CONFIG)),)
|
||||
$(call CATASTROPHIC_ERROR,Invalid KLOR_LAYOUT,KLOR_LAYOUT="$(KLOR_CONFIG)" is not a valid KLOR Layout)
|
||||
else
|
||||
OPT_DEFS += -DKLOR_$(strip $(shell echo $(KLOR_LAYOUT) | tr '[:lower:]' '[:upper:]'))
|
||||
OPT_DEFS += -DKLOR_$(strip $(shell echo $(KLOR_CONFIG) | tr '[:lower:]' '[:upper:]'))
|
||||
endif
|
||||
|
||||
# Turn off features for AVR Processors due to memory size
|
||||
|
|
2
qmk.json
2
qmk.json
|
@ -9,7 +9,7 @@
|
|||
["bluebell/swoop", "t4corun"],
|
||||
["barbellboards/rollow", "t4corun"],
|
||||
["klor/2040", "t4corun"],
|
||||
["klor", "default"],fd
|
||||
["klor", "default"],
|
||||
["klor/2040", "default"],
|
||||
["klor/2040", "saegewerk"]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue