2021-01-10 18:57:58 -08:00
|
|
|
# Processor frequency
|
|
|
|
F_CPU = 8000000
|
|
|
|
|
|
|
|
# Build Options
|
|
|
|
# change yes to no to disable
|
|
|
|
#
|
2021-11-04 14:18:09 -07:00
|
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
2021-01-10 18:57:58 -08:00
|
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
|
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
2021-12-08 21:05:44 -08:00
|
|
|
NKRO_ENABLE = no # Enable N-Key Rollover
|
2021-01-10 18:57:58 -08:00
|
|
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
|
|
|
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
|
|
AUDIO_ENABLE = no # Audio output
|
|
|
|
LTO_ENABLE = yes # Reduce firmware size
|
2023-05-20 05:12:59 -07:00
|
|
|
BLUETOOTH_ENABLE = yes
|
|
|
|
BLUETOOTH_DRIVER = custom
|
2021-01-10 18:57:58 -08:00
|
|
|
|
|
|
|
VIA_ENABLE = yes # VIA support should be enabled here due to the main() loop will be compiled first.
|
2023-05-20 05:12:59 -07:00
|
|
|
|
|
|
|
SRC += usart.c ble.c
|
|
|
|
|
|
|
|
OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16
|
|
|
|
OPT_DEFS += -DUSART1_ENABLED
|