4e1c5887c5
* add docs * core changes * update keyboards to new OLED * updated users to new OLED * update layouts to new OLED * fixup docs * drashna's suggestion * fix up docs * new keyboards with oled * core split changes * remaining keyboard files * Fix The Helix keyboards oled options * reflect develop Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
26 lines
764 B
Makefile
26 lines
764 B
Makefile
# Build Options
|
|
# change to "no" to disable the options, or define them in the Makefile in
|
|
# the appropriate keymap folder that will get included automatically
|
|
#
|
|
CONSOLE_ENABLE = no
|
|
TAP_DANCE_ENABLE = yes
|
|
NKRO_ENABLE = yes
|
|
BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite
|
|
|
|
ifeq ($(strip $(KEYBOARD)), crkbd/rev1)
|
|
RGB_MATRIX_ENABLE = yes
|
|
EXTRAFLAGS += -flto
|
|
BOOTLOADER = qmk-dfu
|
|
OLED_ENABLE = yes
|
|
OLED_DRIVER = SSD1306
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), lazydesigners/dimple)
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default
|
|
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
endif
|
|
|
|
|
|
SRC += tominabox1.c
|