forked from forks/qmk_firmware
ff1b625168
* Move existing files out the way * Convert to community layouts * Add smk65/revf support * Disable stuff by default * Update IDs for via * Align LAYOUT macros for community layouts * Align LAYOUT macros for community layouts - Fix configurator ordering * Update via keymap * remove stub _kb function * Apply suggestions from code review Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
18 lines
513 B
Makefile
18 lines
513 B
Makefile
# Build Options
|
|
# change yes to no to disable
|
|
#
|
|
AUDIO_ENABLE = no # Audio output
|
|
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
|
|
|
ISSI_ENABLE = no # If the I2C pullup resistors aren't install this must be disabled
|
|
WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms
|
|
|
|
|
|
ifeq ($(strip $(ISSI_ENABLE)), yes)
|
|
TMK_COMMON_DEFS += -DISSI_ENABLE
|
|
endif
|
|
|
|
ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
|
|
TMK_COMMON_DEFS += -DWATCHDOG_ENABLE
|
|
endif
|