* Initial commit of mun2 files * Add debug console * fix driver for touchbar * removing debug and extra driver line * Clean up keymaps --------- Co-authored-by: Legonut <admin@rgbkb.net> Co-authored-by: Legonut <legonut3@gmail.com>
42 lines
989 B
Makefile
42 lines
989 B
Makefile
# MCU name
|
|
MCU = RP2040
|
|
|
|
# Bootloader selection
|
|
BOOTLOADER = rp2040
|
|
|
|
# Touch encoder needs
|
|
VPATH += keyboards/rgbkb/common
|
|
SRC += touch_encoder.c
|
|
SRC += common_oled.c
|
|
QUANTUM_LIB_SRC += i2c_master.c
|
|
|
|
# Build Options
|
|
# change yes to no to disable
|
|
#
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
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
|
|
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
AUDIO_ENABLE = no # Audio output
|
|
|
|
DYNAMIC_MACRO_ENABLE = yes
|
|
DIP_SWITCH_ENABLE = no
|
|
|
|
WS2812_DRIVER = vendor
|
|
RGBLIGHT_ENABLE = no
|
|
RGB_MATRIX_ENABLE = yes
|
|
RGB_MATRIX_DRIVER = ws2812
|
|
|
|
OLED_ENABLE = yes
|
|
OLED_DRIVER = ssd1306 # Enable the OLED Driver
|
|
|
|
ENCODER_ENABLE = yes
|
|
|
|
SPLIT_KEYBOARD = yes
|
|
SERIAL_DRIVER = vendor
|
|
|
|
OPT_DEFS += -DOLED_FONT_H=\"keyboards/rgbkb/common/glcdfont.c\"
|
|
|
|
DEFAULT_FOLDER = rgbkb/mun2/rev1
|