]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/helix/rev2/keymaps/default/rules.mk
a failed attempt at hot-plugging
[qmk_firmware.git] / keyboards / helix / rev2 / keymaps / default / rules.mk
1
2 # Build Options
3 #   change to "no" to disable the options, or define them in the Makefile in
4 #   the appropriate keymap folder that will get included automatically
5 #
6 BOOTMAGIC_ENABLE = no       # Virtual DIP switch configuration(+1000)
7 MOUSEKEY_ENABLE = no       # Mouse keys(+4700)
8 EXTRAKEY_ENABLE = no       # Audio control and System control(+450)
9 CONSOLE_ENABLE = no         # Console for debug(+400)
10 COMMAND_ENABLE = no        # Commands for debug and configuration
11 NKRO_ENABLE = no            # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
12 BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
13 MIDI_ENABLE = no            # MIDI controls
14 AUDIO_ENABLE = no           # Audio output on port C6
15 UNICODE_ENABLE = no         # Unicode
16 BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID
17 RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.  Do not enable this with audio at the same time.
18 SWAP_HANDS_ENABLE = no        # Enable one-hand typing
19
20 define HELIX_CUSTOMISE_MSG
21   $(info Helix customize)
22   $(info -  OLED_ENABLE=$(OLED_ENABLE))
23   $(info -  LED_BACK_ENABLE=$(LED_BACK_ENABLE))
24   $(info -  LED_UNDERGLOW_ENABLE=$(LED_UNDERGLOW_ENABLE))
25   $(info -  LED_ANIMATION=$(LED_ANIMATIONS))
26 endef
27
28 # Helix keyboard customize
29 # you can edit follows 6 Variables
30 #  jp: 以下の6つの変数を必要に応じて編集します。
31 HELIX_ROWS = 5              # Helix Rows is 4 or 5
32 OLED_ENABLE = no            # OLED_ENABLE
33 LOCAL_GLCDFONT = no         # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
34 LED_BACK_ENABLE = no        # LED backlight (Enable WS2812 RGB underlight.)
35 LED_UNDERGLOW_ENABLE = no   # LED underglow (Enable WS2812 RGB underlight.)
36 LED_ANIMATIONS = yes        # LED animations
37
38 ####  LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE.
39 ####    Do not enable these with audio at the same time.
40
41 # Uncomment these for checking
42 #   jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
43 # $(eval $(call HELIX_CUSTOMISE_MSG))
44 # $(info )
45
46 ifneq ($(strip $(HELIX_ROWS)), 4)
47   ifneq ($(strip $(HELIX_ROWS)), 5)
48     $(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
49   endif
50 endif
51 OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
52
53 ifeq ($(strip $(LED_BACK_ENABLE)), yes)
54   RGBLIGHT_ENABLE = yes
55   OPT_DEFS += -DRGBLED_BACK
56   ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
57     $(eval $(call HELIX_CUSTOMISE_MSG))
58     $(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
59   endif
60 else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
61   RGBLIGHT_ENABLE = yes
62 else
63   RGBLIGHT_ENABLE = no
64 endif
65
66 ifeq ($(strip $(LED_ANIMATIONS)), yes)
67     OPT_DEFS += -DRGBLIGHT_ANIMATIONS
68 endif
69
70 ifeq ($(strip $(OLED_ENABLE)), yes)
71     OPT_DEFS += -DOLED_ENABLE
72 endif
73
74 ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
75     OPT_DEFS += -DLOCAL_GLCDFONT
76 endif
77
78 # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
79 SLEEP_LED_ENABLE = no    # Breathing sleep LED during USB suspend
80
81 ifndef QUANTUM_DIR
82         include ../../../../Makefile
83 endif
84
85 # Uncomment these for debugging
86 # $(info -- RGBLIGHT_ENABLE=$(RGBLIGHT_ENABLE))
87 # $(info -- OPT_DEFS=$(OPT_DEFS))
88 # $(info )