2018-07-08 04:33:36 +02:00
|
|
|
# MCU name
|
|
|
|
MCU = atmega32u4
|
|
|
|
|
2019-10-24 22:50:13 +02:00
|
|
|
# Bootloader selection
|
|
|
|
BOOTLOADER = atmel-dfu
|
2018-07-08 04:33:36 +02:00
|
|
|
|
|
|
|
# Build Options
|
|
|
|
# change yes to no to disable
|
|
|
|
#
|
2021-11-04 22:18:09 +01:00
|
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
2020-01-30 19:47:48 +01:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
2021-06-28 07:15:24 +02:00
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
2018-07-08 04:33:36 +02:00
|
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
2021-12-09 06:05:44 +01:00
|
|
|
NKRO_ENABLE = no # Enable N-Key Rollover
|
2021-06-28 07:15:24 +02:00
|
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
|
|
AUDIO_ENABLE = no # Audio output
|
2018-07-08 04:33:36 +02:00
|
|
|
|
2020-01-26 23:06:56 +01:00
|
|
|
SRC += mxss_frontled.c
|
|
|
|
|
2018-07-08 04:33:36 +02:00
|
|
|
# Remove the common RGB light code and use my iteration instead
|
2021-06-28 07:15:24 +02:00
|
|
|
COMMON_VPATH += $(QUANTUM_DIR)/rgblight
|
2018-07-08 04:33:36 +02:00
|
|
|
OPT_DEFS += -DRGBLIGHT_ENABLE
|
|
|
|
SRC += rgblight.c
|
2021-06-28 07:15:24 +02:00
|
|
|
SRC += $(QUANTUM_DIR)/color.c
|
|
|
|
WS2812_DRIVER_REQUIRED = yes
|
2018-07-08 04:33:36 +02:00
|
|
|
CIE1931_CURVE = yes
|
2021-06-28 07:15:24 +02:00
|
|
|
RGB_KEYCODES_ENABLE = yes
|