]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/mitosis/keymaps/datagrok/rules.mk
[Keyboard] Add QMK configurator JSON for Alice PCB (#6397)
[qmk_firmware.git] / keyboards / mitosis / keymaps / datagrok / rules.mk
1 # Space and "Red" modifier are keys I want in the easiest-to-reach position in
2 # the thumb row. Depending on the angle and height of the Mitosis and the type
3 # of keycaps you use, the upper row or the lower row of thumb keys might be more
4 # comfortable for you. I put red/space on the upper row and blue/shift on the
5 # lower, but to swap that, set MITOSIS_DATAGROK_BOTTOMSPACE = yes. This has the
6 # effect of swapping only the four center keys on the upper row of thumb keys with that
7 # of the lower row of thumb keys.
8 MITOSIS_DATAGROK_BOTTOMSPACE = no
9
10 # I used to use a pro micro clocked at 8Mhz. It can't reach the same baud rate
11 # that the standard 16Mhz-clocked pro micro can, so the baud rate needs to be
12 # lowered. Set this to "yes" to do that. See also
13 # https://github.com/reversebias/mitosis/pull/10
14 MITOSIS_DATAGROK_SLOWUART = no
15
16 AUDIO_ENABLE = no # audio output
17 FAUXCLICKY_ENABLE = no
18 BOOTMAGIC_ENABLE = no   # Virtual DIP switch configuration(+1000)
19 MOUSEKEY_ENABLE = no    # Mouse keys(+4700)
20 EXTRAKEY_ENABLE = yes   # Audio control and System control(+450)
21 CONSOLE_ENABLE = no     # Console for debug(+400)
22 COMMAND_ENABLE = no     # Commands for debug and configuration
23 UNICODE_ENABLE = no     # Unicode
24 BACKLIGHT_ENABLE = no   # Enable keyboard backlight functionality
25 BLUETOOTH_ENABLE = no   # Enable Bluetooth with the Adafruit EZ-Key HID
26 MIDI_ENABLE = no        # MIDI controls
27
28 ifeq ($(strip $(MITOSIS_DATAGROK_BOTTOMSPACE)), yes)
29                 OPT_DEFS += -DMITOSIS_DATAGROK_BOTTOMSPACE
30 endif
31 ifeq ($(strip $(MITOSIS_DATAGROK_SLOWUART)), yes)
32                 OPT_DEFS += -DMITOSIS_DATAGROK_SLOWUART
33 endif
34
35 # vim: set ts=8 noet: