2016-11-26 06:11:40 +00:00
|
|
|
# MCU name
|
|
|
|
MCU = atmega32u4
|
|
|
|
|
2019-10-20 19:51:37 +00:00
|
|
|
# Processor frequency
|
2016-11-26 06:11:40 +00:00
|
|
|
F_CPU = 8000000
|
|
|
|
|
2019-10-20 19:51:37 +00:00
|
|
|
# Bootloader selection
|
|
|
|
BOOTLOADER = caterina
|
2016-11-26 06:11:40 +00:00
|
|
|
|
|
|
|
# Build Options
|
2021-12-07 23:40:26 +00:00
|
|
|
# change yes to no to disable
|
2016-11-26 06:11:40 +00:00
|
|
|
#
|
2021-08-07 06:59:56 +00:00
|
|
|
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
2021-09-30 14:48:36 +00:00
|
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
2017-06-30 20:09:52 +00:00
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
|
|
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
|
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
2021-09-21 10:04:03 +00:00
|
|
|
AUDIO_ENABLE = no # Audio output
|
2019-07-09 19:59:05 +00:00
|
|
|
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
2017-06-30 20:09:52 +00:00
|
|
|
PS2_MOUSE_ENABLE = yes
|
|
|
|
PS2_USE_INT = yes
|
|
|
|
CUSTOM_MATRIX = yes
|
2021-09-12 15:22:03 +00:00
|
|
|
BLUETOOTH_ENABLE = yes
|
|
|
|
BLUETOOTH_DRIVER = AdafruitBLE
|
2016-11-26 06:11:40 +00:00
|
|
|
|
2017-07-10 15:18:47 +00:00
|
|
|
SRC += ws2812.c
|
2017-02-10 14:28:46 +00:00
|
|
|
SRC += rgbsps.c
|
2017-07-10 15:18:47 +00:00
|
|
|
SRC += analog.c
|
2017-04-18 18:38:08 +00:00
|
|
|
SRC += matrix.c
|
2019-07-09 19:59:05 +00:00
|
|
|
|
2020-08-22 08:21:06 +00:00
|
|
|
LTO_ENABLE = yes
|