forked from forks/qmk_firmware
4a87af0e9a
* Fix up bastardkb boards since blackpill support is officially added. * Check for blackpill version, not elite c. * Add checks in chibiOS config since multiple ARM controllers supported. * Rework rules.mk for keymaps to better handle arm vs avr support * Start moving away from `matrix_*_*` functions. * `housekeeping_task_*` instead of `matrix_scan_*` * `keyboard_(pre|post)_init_*` instead of `matrix_init_*` * Add ℂℴmⅈℂ unicode input method. * Clean up unicode code to be more compact and flexible. * Remove/move Pro Micro LED commands to userspace and better filter them * Fixup OLED code * Use newer quantum keycode functions/preprocessors rather than manual bit manipulation * Make unicode mode render much more compact/simple. * Make qmk secrets more self contained * Remove custom implementation of split watchdog
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
TAP_DANCE_ENABLE = no
|
|
NKRO_ENABLE = yes
|
|
CAPS_WORD_ENABLE = no
|
|
CONSOLE_ENABLE = no
|
|
COMMAND_ENABLE = no
|
|
BACKLIGHT_ENABLE = no
|
|
|
|
ifeq ($(strip $(LAYOUT_HAS_RGB)), yes)
|
|
RGBLIGHT_ENABLE = yes
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev6)
|
|
CONSOLE_ENABLE = yes
|
|
RGBLIGHT_ENABLE = yes
|
|
RGB_MATRIX_ENABLE = no
|
|
RGBLIGHT_STARTUP_ANIMATION = yes
|
|
AUDIO_ENABLE = yes
|
|
EEPROM_DRIVER = i2c
|
|
ENCODER_MAP_ENABLE = yes
|
|
AUTOCORRECT_ENABLE = yes
|
|
CAPS_WORD_ENABLE = yes
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), planck/light)
|
|
RGB_MATRIX_ENABLE = yes
|
|
RGBLIGHT_ENABLE = yes
|
|
RGBLIGHT_STARTUP_ANIMATION = yes
|
|
AUDIO_ENABLE = yes
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), planck/ez)
|
|
RGBLIGHT_ENABLE = no
|
|
ENCODER_ENABLE = yes
|
|
ENCODER_MAP_ENABLE = yes
|
|
RGB_MATRIX_ENABLE = yes
|
|
INDICATOR_LIGHTS = yes
|
|
RGBLIGHT_STARTUP_ANIMATION = yes
|
|
CONSOLE_ENABLE = yes
|
|
COMMAND_ENABLE = yes
|
|
AUDIO_ENABLE = yes
|
|
AUTOCORRECT_ENABLE = yes
|
|
CAPS_WORD_ENABLE = yes
|
|
endif
|
|
|
|
ifeq ($(strip $(MCU)), atmega32u4)
|
|
BOOTLOADER = qmk-hid
|
|
BOOTLOADER_SIZE = 512
|
|
LTO_ENABLE = yes
|
|
CUSTOM_UNICODE_ENABLE = no
|
|
endif
|