mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-04-23 23:51:27 +00:00
Merge pull request #17 from mtei/Helix-keymap-rules_mk-refine
Helix keymaps rules.mk refine
This commit is contained in:
commit
955dcbcc03
@ -40,81 +40,17 @@ 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.
|
||||||
|
|
||||||
### Helix keyboard 'default' keymap: convenient command line option
|
### Helix Pico keyboard 'biacco' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:defualt
|
## make HELIX=<options> helix/pico:biacco
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
## ex.
|
## ex.
|
||||||
## make HELIX=oled helix:defualt
|
## make HELIX=oled helix/pico:biacco
|
||||||
## make HELIX=oled,back helix:defualt
|
## make HELIX=oled,back helix/pico:biacco
|
||||||
## make HELIX=oled,under helix:defualt
|
## make HELIX=oled,under helix/pico:biacco
|
||||||
## make HELIX=oled,back,na helix:defualt
|
## make HELIX=oled,back,na helix/pico:biacco
|
||||||
## make HELIX=oled,back,ios helix:defualt
|
## make HELIX=oled,back,ios helix/pico:biacco
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(AUDIO_ENABLE)),yes)
|
|
||||||
ifeq ($(strip $(RGBLIGHT_ENABLE)),yes)
|
|
||||||
Link_Time_Optimization = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)),yes)
|
|
||||||
Link_Time_Optimization = yes
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -40,81 +40,17 @@ 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.
|
||||||
|
|
||||||
### Helix keyboard 'default' keymap: convenient command line option
|
### Helix Pico keyboard 'default' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:defualt
|
## make HELIX=<options> helix/pico:default
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
## ex.
|
## ex.
|
||||||
## make HELIX=oled helix:defualt
|
## make HELIX=oled helix/pico:default
|
||||||
## make HELIX=oled,back helix:defualt
|
## make HELIX=oled,back helix/pico:default
|
||||||
## make HELIX=oled,under helix:defualt
|
## make HELIX=oled,under helix/pico:default
|
||||||
## make HELIX=oled,back,na helix:defualt
|
## make HELIX=oled,back,na helix/pico:default
|
||||||
## make HELIX=oled,back,ios helix:defualt
|
## make HELIX=oled,back,ios helix/pico:default
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(AUDIO_ENABLE)),yes)
|
|
||||||
ifeq ($(strip $(RGBLIGHT_ENABLE)),yes)
|
|
||||||
Link_Time_Optimization = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)),yes)
|
|
||||||
Link_Time_Optimization = yes
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
76
keyboards/helix/pico/keymaps_common.mk
Normal file
76
keyboards/helix/pico/keymaps_common.mk
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
### Helix Pico keyboard 'MAP_NAME' keymap: convenient command line option
|
||||||
|
## make HELIX=<options> helix/pico:MAP_NAME
|
||||||
|
## option= oled | back | under | na | ios
|
||||||
|
## ex.
|
||||||
|
## make HELIX=oled helix/pico:MAP_NAME
|
||||||
|
## make HELIX=oled,back helix/pico:MAP_NAME
|
||||||
|
## make HELIX=oled,under helix/pico:MAP_NAME
|
||||||
|
## make HELIX=oled,back,na helix/pico:MAP_NAME
|
||||||
|
## make HELIX=oled,back,ios helix/pico:MAP_NAME
|
||||||
|
##
|
||||||
|
ifneq ($(strip $(HELIX)),)
|
||||||
|
ifeq ($(findstring oled,$(HELIX)), oled)
|
||||||
|
OLED_ENABLE = yes
|
||||||
|
endif
|
||||||
|
ifeq ($(findstring back,$(HELIX)), back)
|
||||||
|
LED_BACK_ENABLE = yes
|
||||||
|
else ifeq ($(findstring under,$(HELIX)), under)
|
||||||
|
LED_UNDERGLOW_ENABLE = yes
|
||||||
|
endif
|
||||||
|
ifeq ($(findstring na,$(HELIX)), na)
|
||||||
|
LED_ANIMATIONS = no
|
||||||
|
endif
|
||||||
|
ifeq ($(findstring ios,$(HELIX)), ios)
|
||||||
|
IOS_DEVICE_ENABLE = yes
|
||||||
|
endif
|
||||||
|
$(eval $(call HELIX_CUSTOMISE_MSG))
|
||||||
|
$(info )
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Uncomment these for checking
|
||||||
|
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
||||||
|
# jp: 上記の HELIX= でコマンドライン上でカスタマイズを指定した場合は常にカスタマイズの状態を表示されます。
|
||||||
|
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
||||||
|
# $(info )
|
||||||
|
|
||||||
|
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
||||||
|
RGBLIGHT_ENABLE = yes
|
||||||
|
OPT_DEFS += -DRGBLED_BACK
|
||||||
|
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
||||||
|
$(eval $(call HELIX_CUSTOMISE_MSG))
|
||||||
|
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
||||||
|
endif
|
||||||
|
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
||||||
|
RGBLIGHT_ENABLE = yes
|
||||||
|
else
|
||||||
|
RGBLIGHT_ENABLE = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
||||||
|
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
||||||
|
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
||||||
|
OPT_DEFS += -DOLED_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
||||||
|
OPT_DEFS += -DLOCAL_GLCDFONT
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(AUDIO_ENABLE)),yes)
|
||||||
|
ifeq ($(strip $(RGBLIGHT_ENABLE)),yes)
|
||||||
|
Link_Time_Optimization = yes
|
||||||
|
endif
|
||||||
|
ifeq ($(strip $(OLED_ENABLE)),yes)
|
||||||
|
Link_Time_Optimization = yes
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
||||||
|
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
||||||
|
endif
|
@ -31,7 +31,7 @@ endef
|
|||||||
# jp: 以下の7つの変数を必要に応じて編集します。
|
# jp: 以下の7つの変数を必要に応じて編集します。
|
||||||
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
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" insted 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.)
|
||||||
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
||||||
LED_ANIMATIONS = yes # LED animations
|
LED_ANIMATIONS = yes # LED animations
|
||||||
@ -42,78 +42,16 @@ Link_Time_Optimization = no # if firmware size over limit, try this option
|
|||||||
#### Do not enable these with audio at the same time.
|
#### Do not enable these with audio at the same time.
|
||||||
|
|
||||||
### Helix keyboard 'default' keymap: convenient command line option
|
### Helix keyboard 'default' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:defualt
|
## make HELIX=<options> helix:default
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
## ex.
|
## ex.
|
||||||
## make HELIX=oled helix:defualt
|
## make HELIX=oled helix:default
|
||||||
## make HELIX=oled,back helix:defualt
|
## make HELIX=oled,back helix:default
|
||||||
## make HELIX=oled,under helix:defualt
|
## make HELIX=oled,under helix:default
|
||||||
## make HELIX=oled,back,na helix:defualt
|
## make HELIX=oled,back,na helix:default
|
||||||
## make HELIX=oled,back,ios helix:defualt
|
## make HELIX=oled,back,ios helix:default
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 4)
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 5)
|
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -50,74 +50,22 @@ Link_Time_Optimization = no # if firmware size over limit, try this option
|
|||||||
## make HELIX=oled,back,na helix:edvorakjp
|
## make HELIX=oled,back,na helix:edvorakjp
|
||||||
## make HELIX=oled,back,ios helix:edvorakjp
|
## make HELIX=oled,back,ios helix:edvorakjp
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifeq ($(strip $(HELIX_ROWS)), 4)
|
ifeq ($(strip $(HELIX_ROWS)), 4)
|
||||||
SRC += keymap_4rows.c
|
SRC += keymap_4rows.c
|
||||||
else ifeq ($(strip $(HELIX_ROWS)), 5)
|
else ifeq ($(strip $(HELIX_ROWS)), 5)
|
||||||
SRC += keymap_5rows.c
|
SRC += keymap_5rows.c
|
||||||
else
|
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
|
||||||
endif
|
endif
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
OPT_DEFS += -DRGBLED_BACK
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
SRC += oled.c
|
SRC += oled.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
|
||||||
|
@ -26,12 +26,13 @@ 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" insted 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.)
|
||||||
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
||||||
LED_ANIMATIONS = yes # LED animations
|
LED_ANIMATIONS = yes # LED animations
|
||||||
@ -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
|
||||||
@ -51,69 +56,7 @@ Link_Time_Optimization = no # if firmware size over limit, try this option
|
|||||||
## make HELIX=oled,back,na helix:five_rows
|
## make HELIX=oled,back,na helix:five_rows
|
||||||
## make HELIX=oled,back,ios helix:five_rows
|
## make HELIX=oled,back,ios helix:five_rows
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 4)
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 5)
|
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -31,7 +31,7 @@ endef
|
|||||||
# jp: 以下の7つの変数を必要に応じて編集します。
|
# jp: 以下の7つの変数を必要に応じて編集します。
|
||||||
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
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" insted 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.)
|
||||||
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
||||||
LED_ANIMATIONS = yes # LED animations
|
LED_ANIMATIONS = yes # LED animations
|
||||||
@ -41,79 +41,17 @@ 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.
|
||||||
|
|
||||||
### Helix keyboard 'default' keymap: convenient command line option
|
### Helix keyboard 'five_rows_jis' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:defualt
|
## make HELIX=<options> helix:five_rows
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
## ex.
|
## ex.
|
||||||
## make HELIX=oled helix:defualt
|
## make HELIX=oled helix:five_rows_jis
|
||||||
## make HELIX=oled,back helix:defualt
|
## make HELIX=oled,back helix:five_rows_jis
|
||||||
## make HELIX=oled,under helix:defualt
|
## make HELIX=oled,under helix:five_rows_jis
|
||||||
## make HELIX=oled,back,na helix:defualt
|
## make HELIX=oled,back,na helix:five_rows_jis
|
||||||
## make HELIX=oled,back,ios helix:defualt
|
## make HELIX=oled,back,ios helix:five_rows_jis
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 4)
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 5)
|
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -31,7 +31,7 @@ endef
|
|||||||
# jp: 以下の7つの変数を必要に応じて編集します。
|
# jp: 以下の7つの変数を必要に応じて編集します。
|
||||||
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
||||||
OLED_ENABLE = yes # OLED_ENABLE
|
OLED_ENABLE = yes # OLED_ENABLE
|
||||||
LOCAL_GLCDFONT = yes # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
|
LOCAL_GLCDFONT = yes # use each keymaps "helixfont.h" instead of "common/glcdfont.c"
|
||||||
LED_BACK_ENABLE = yes # LED backlight (Enable WS2812 RGB underlight.)
|
LED_BACK_ENABLE = yes # LED backlight (Enable WS2812 RGB underlight.)
|
||||||
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
||||||
LED_ANIMATIONS = yes # LED animations
|
LED_ANIMATIONS = yes # LED animations
|
||||||
@ -41,79 +41,17 @@ 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.
|
||||||
|
|
||||||
### Helix keyboard 'default' keymap: convenient command line option
|
### Helix keyboard 'froggy' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:defualt
|
## make HELIX=<options> helix:defualt
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
## ex.
|
## ex.
|
||||||
## make HELIX=oled helix:defualt
|
## make HELIX=oled helix:froggy
|
||||||
## make HELIX=oled,back helix:defualt
|
## make HELIX=oled,back helix:froggy
|
||||||
## make HELIX=oled,under helix:defualt
|
## make HELIX=oled,under helix:froggy
|
||||||
## make HELIX=oled,back,na helix:defualt
|
## make HELIX=oled,back,na helix:froggy
|
||||||
## make HELIX=oled,back,ios helix:defualt
|
## make HELIX=oled,back,ios helix:froggy
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 4)
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 5)
|
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -31,7 +31,7 @@ endef
|
|||||||
# jp: 以下の7つの変数を必要に応じて編集します。
|
# jp: 以下の7つの変数を必要に応じて編集します。
|
||||||
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
||||||
OLED_ENABLE = yes # OLED_ENABLE
|
OLED_ENABLE = yes # OLED_ENABLE
|
||||||
LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
|
LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" instead of "common/glcdfont.c"
|
||||||
LED_BACK_ENABLE = yes # LED backlight (Enable WS2812 RGB underlight.)
|
LED_BACK_ENABLE = yes # LED backlight (Enable WS2812 RGB underlight.)
|
||||||
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
||||||
LED_ANIMATIONS = yes # LED animations
|
LED_ANIMATIONS = yes # LED animations
|
||||||
@ -41,81 +41,19 @@ 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.
|
||||||
|
|
||||||
### Helix keyboard 'default' keymap: convenient command line option
|
SRC += led_test_init.c
|
||||||
|
|
||||||
|
### Helix keyboard 'led_test' keymap: convenient command line option
|
||||||
## make HELIX=<options> helix:defualt
|
## make HELIX=<options> helix:defualt
|
||||||
## option= oled | back | under | na | ios
|
## option= oled | back | under | na | ios
|
||||||
## ex.
|
## ex.
|
||||||
## make HELIX=oled helix:defualt
|
## make HELIX=oled helix:led_test
|
||||||
## make HELIX=oled,back helix:defualt
|
## make HELIX=oled,back helix:led_test
|
||||||
## make HELIX=oled,under helix:defualt
|
## make HELIX=oled,under helix:led_test
|
||||||
## make HELIX=oled,back,na helix:defualt
|
## make HELIX=oled,back,na helix:led_test
|
||||||
## make HELIX=oled,back,ios helix:defualt
|
## make HELIX=oled,back,ios helix:led_test
|
||||||
##
|
##
|
||||||
ifneq ($(strip $(HELIX)),)
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../keymaps_common.mk
|
||||||
ifeq ($(findstring oled,$(HELIX)), oled)
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring back,$(HELIX)), back)
|
|
||||||
LED_BACK_ENABLE = yes
|
|
||||||
else ifeq ($(findstring under,$(HELIX)), under)
|
|
||||||
LED_UNDERGLOW_ENABLE = yes
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring na,$(HELIX)), na)
|
|
||||||
LED_ANIMATIONS = no
|
|
||||||
endif
|
|
||||||
ifeq ($(findstring ios,$(HELIX)), ios)
|
|
||||||
IOS_DEVICE_ENABLE = yes
|
|
||||||
endif
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(info )
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment these for checking
|
|
||||||
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
|
||||||
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
# $(info )
|
|
||||||
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 4)
|
|
||||||
ifneq ($(strip $(HELIX_ROWS)), 5)
|
|
||||||
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
OPT_DEFS += -DRGBLED_BACK
|
|
||||||
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
$(eval $(call HELIX_CUSTOMISE_MSG))
|
|
||||||
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
|
||||||
endif
|
|
||||||
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
else
|
|
||||||
RGBLIGHT_ENABLE = no
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
||||||
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
||||||
OPT_DEFS += -DOLED_ENABLE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
|
||||||
OPT_DEFS += -DLOCAL_GLCDFONT
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
||||||
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
||||||
endif
|
|
||||||
|
|
||||||
SRC += led_test_init.c
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
79
keyboards/helix/rev2/keymaps_common.mk
Normal file
79
keyboards/helix/rev2/keymaps_common.mk
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
##
|
||||||
|
## Helix keyboard rev2 common compile option process
|
||||||
|
##
|
||||||
|
|
||||||
|
### Helix keyboard 'MAP_NAME' keymap: convenient command line option
|
||||||
|
## make HELIX=<options> helix:MAP_NAME
|
||||||
|
## option= oled | back | under | na | ios
|
||||||
|
## ex.
|
||||||
|
## make HELIX=oled helix:MAP_NAME
|
||||||
|
## make HELIX=oled,back helix:MAP_NAME
|
||||||
|
## make HELIX=oled,under helix:MAP_NAME
|
||||||
|
## make HELIX=oled,back,na helix:MAP_NAME
|
||||||
|
## make HELIX=oled,back,ios helix:MAP_NAME
|
||||||
|
##
|
||||||
|
ifneq ($(strip $(HELIX)),)
|
||||||
|
ifeq ($(findstring oled,$(HELIX)), oled)
|
||||||
|
OLED_ENABLE = yes
|
||||||
|
endif
|
||||||
|
ifeq ($(findstring back,$(HELIX)), back)
|
||||||
|
LED_BACK_ENABLE = yes
|
||||||
|
else ifeq ($(findstring under,$(HELIX)), under)
|
||||||
|
LED_UNDERGLOW_ENABLE = yes
|
||||||
|
endif
|
||||||
|
ifeq ($(findstring na,$(HELIX)), na)
|
||||||
|
LED_ANIMATIONS = no
|
||||||
|
endif
|
||||||
|
ifeq ($(findstring ios,$(HELIX)), ios)
|
||||||
|
IOS_DEVICE_ENABLE = yes
|
||||||
|
endif
|
||||||
|
$(eval $(call HELIX_CUSTOMISE_MSG))
|
||||||
|
$(info )
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Uncomment these for checking
|
||||||
|
# jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
|
||||||
|
# jp: 上記の HELIX= でコマンドライン上でカスタマイズを指定した場合は常にカスタマイズの状態を表示されます。
|
||||||
|
# $(eval $(call HELIX_CUSTOMISE_MSG))
|
||||||
|
# $(info )
|
||||||
|
|
||||||
|
ifneq ($(strip $(HELIX_ROWS)), 4)
|
||||||
|
ifneq ($(strip $(HELIX_ROWS)), 5)
|
||||||
|
$(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
|
||||||
|
|
||||||
|
ifeq ($(strip $(LED_BACK_ENABLE)), yes)
|
||||||
|
RGBLIGHT_ENABLE = yes
|
||||||
|
OPT_DEFS += -DRGBLED_BACK
|
||||||
|
ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
||||||
|
$(eval $(call HELIX_CUSTOMISE_MSG))
|
||||||
|
$(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
|
||||||
|
endif
|
||||||
|
else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
|
||||||
|
RGBLIGHT_ENABLE = yes
|
||||||
|
else
|
||||||
|
RGBLIGHT_ENABLE = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
|
||||||
|
OPT_DEFS += -DIOS_DEVICE_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
||||||
|
OPT_DEFS += -DRGBLIGHT_ANIMATIONS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
||||||
|
OPT_DEFS += -DOLED_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
|
||||||
|
OPT_DEFS += -DLOCAL_GLCDFONT
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
||||||
|
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user