2021-06-26 05:00:21 +00:00
|
|
|
# MCU name
|
|
|
|
MCU = STM32F303
|
|
|
|
|
2022-01-15 01:04:58 +00:00
|
|
|
# Bootloader selection
|
|
|
|
BOOTLOADER = stm32-dfu
|
|
|
|
|
2021-06-26 05:00:21 +00:00
|
|
|
# Touch encoder needs
|
2022-02-09 20:02:53 +00:00
|
|
|
VPATH += keyboards/rgbkb/common
|
|
|
|
SRC += touch_encoder.c
|
|
|
|
SRC += common_oled.c
|
2021-06-26 05:00:21 +00:00
|
|
|
QUANTUM_LIB_SRC += i2c_master.c
|
|
|
|
|
|
|
|
# Build Options
|
2021-12-07 23:40:26 +00:00
|
|
|
# change yes to no to disable
|
2021-06-26 05:00:21 +00:00
|
|
|
#
|
2021-08-07 06:59:56 +00:00
|
|
|
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
2021-06-26 05:00:21 +00:00
|
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
2022-08-07 13:01:10 +00:00
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
2021-06-26 05:00:21 +00:00
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
2021-12-09 05:05:44 +00:00
|
|
|
NKRO_ENABLE = yes # Enable N-Key Rollover
|
2021-06-26 05:00:21 +00:00
|
|
|
AUDIO_ENABLE = no # Audio output
|
|
|
|
|
|
|
|
WS2812_DRIVER = pwm
|
|
|
|
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
|
|
|
RGB_MATRIX_ENABLE = yes
|
|
|
|
RGB_MATRIX_DRIVER = WS2812
|
|
|
|
|
2021-08-24 06:28:26 +00:00
|
|
|
OLED_ENABLE = yes
|
|
|
|
OLED_DRIVER = SSD1306 # Enable the OLED Driver
|
2021-06-26 05:00:21 +00:00
|
|
|
|
|
|
|
ENCODER_ENABLE = yes
|
|
|
|
|
|
|
|
SPLIT_KEYBOARD = yes
|
|
|
|
SERIAL_DRIVER = usart
|
|
|
|
LTO_ENABLE = yes
|
|
|
|
OPT = 3
|
|
|
|
|
2022-02-09 20:02:53 +00:00
|
|
|
OPT_DEFS += -DOLED_FONT_H=\"keyboards/rgbkb/common/glcdfont.c\"
|
2021-06-26 05:00:21 +00:00
|
|
|
|
2021-08-24 06:28:26 +00:00
|
|
|
DEFAULT_FOLDER = rgbkb/mun/rev1
|