2018-10-26 16:14:29 -07:00
|
|
|
# Do not put the microcontroller into power saving mode
|
|
|
|
# when we get USB suspend event. We want it to keep updating
|
|
|
|
# backlight effects.
|
|
|
|
OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
|
|
|
|
|
|
|
|
# Build Options
|
2021-12-12 18:05:37 -08:00
|
|
|
# change yes to no to disable
|
2018-10-26 16:14:29 -07:00
|
|
|
#
|
2019-01-06 17:22:19 -08:00
|
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
2021-11-04 14:18:09 -07:00
|
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
2018-10-26 16:14:29 -07:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
2021-12-08 21:05:44 -08:00
|
|
|
NKRO_ENABLE = yes # Enable N-Key Rollover
|
2021-09-21 03:04:03 -07:00
|
|
|
AUDIO_ENABLE = no # Audio output
|
2018-10-26 16:14:29 -07:00
|
|
|
NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in
|
2019-01-06 17:22:19 -08:00
|
|
|
|
|
|
|
CIE1931_CURVE = yes
|
2019-07-29 22:53:15 -07:00
|
|
|
|
2019-11-14 18:25:40 -08:00
|
|
|
# project specific files
|
|
|
|
SRC = keyboards/wilba_tech/wt_main.c \
|
|
|
|
keyboards/wilba_tech/wt_rgb_backlight.c \
|
2021-07-31 06:31:09 -07:00
|
|
|
drivers/led/issi/is31fl3733.c \
|
2019-11-14 18:25:40 -08:00
|
|
|
quantum/color.c \
|
2021-08-17 16:54:41 -07:00
|
|
|
i2c_master.c
|