mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-17 21:22:05 +00:00
Fix the value of helix:five_rows variable HELIX_ROWS to 5.
This commit is contained in:
parent
4a94b61321
commit
24c8069955
@ -26,10 +26,11 @@ define HELIX_CUSTOMISE_MSG
|
|||||||
$(info - IOS_DEVICE_ENABLE=$(IOS_DEVICE_ENABLE))
|
$(info - IOS_DEVICE_ENABLE=$(IOS_DEVICE_ENABLE))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
HELIX_ROWS = 5 # Helix keymap five_rows's Rows only 5
|
||||||
|
|
||||||
# Helix keyboard customize
|
# Helix keyboard customize
|
||||||
# you can edit follows 7 Variables
|
# you can edit follows 6 Variables
|
||||||
# jp: 以下の7つの変数を必要に応じて編集します。
|
# jp: 以下の6つの変数を必要に応じて編集します。
|
||||||
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
|
||||||
OLED_ENABLE = no # OLED_ENABLE
|
OLED_ENABLE = no # OLED_ENABLE
|
||||||
LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" instead of "common/glcdfont.c"
|
LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" instead of "common/glcdfont.c"
|
||||||
LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
|
LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
|
||||||
@ -41,6 +42,10 @@ Link_Time_Optimization = no # if firmware size over limit, try this option
|
|||||||
#### LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE.
|
#### LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE.
|
||||||
#### Do not enable these with audio at the same time.
|
#### Do not enable these with audio at the same time.
|
||||||
|
|
||||||
|
ifneq ($(strip $(HELIX_ROWS)), 5)
|
||||||
|
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
||||||
|
endif
|
||||||
|
|
||||||
### Helix keyboard 'five_rows' keymap: convenient command line option
|
### Helix keyboard 'five_rows' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:five_rows
|
## make HELIX=<options> helix:five_rows
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
@ -76,9 +81,9 @@ endif
|
|||||||
# $(info )
|
# $(info )
|
||||||
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 4)
|
ifneq ($(strip $(HELIX_ROWS)), 4)
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 5)
|
ifneq ($(strip $(HELIX_ROWS)), 5)
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user