2019-11-15 03:25:40 +01:00
|
|
|
# MCU name
|
|
|
|
MCU = STM32F303
|
2020-12-03 03:04:28 +01:00
|
|
|
BOARD = QMK_PROTON_C
|
2018-10-27 01:14:29 +02:00
|
|
|
|
2021-06-08 11:48:46 +02:00
|
|
|
# Bootloader selection
|
|
|
|
BOOTLOADER = stm32-dfu
|
|
|
|
|
2018-10-27 01:14:29 +02:00
|
|
|
# Do not put the microcontroller into power saving mode
|
|
|
|
# when we get USB suspend event. We want it to keep updating
|
|
|
|
# backlight effects.
|
|
|
|
OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
|
|
|
|
|
|
|
|
# Build Options
|
2021-12-13 03:05:37 +01:00
|
|
|
# change yes to no to disable
|
2018-10-27 01:14:29 +02:00
|
|
|
#
|
2019-01-07 02:22:19 +01:00
|
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
2021-11-04 22:18:09 +01:00
|
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
2018-10-27 01:14:29 +02:00
|
|
|
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
|
2021-12-09 06:05:44 +01:00
|
|
|
NKRO_ENABLE = yes # Enable N-Key Rollover
|
2021-09-21 12:04:03 +02:00
|
|
|
AUDIO_ENABLE = no # Audio output
|
2018-10-27 01:14:29 +02:00
|
|
|
NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in
|
2019-01-07 02:22:19 +01:00
|
|
|
|
|
|
|
CIE1931_CURVE = yes
|
2019-07-30 07:53:15 +02:00
|
|
|
|
2020-01-22 00:09:50 +01:00
|
|
|
LAYOUTS = 60_ansi
|
2019-11-15 03:25:40 +01:00
|
|
|
|
|
|
|
# project specific files
|
|
|
|
SRC = keyboards/wilba_tech/wt_main.c \
|
|
|
|
keyboards/wilba_tech/wt_rgb_backlight.c \
|
2021-07-31 15:31:09 +02:00
|
|
|
drivers/led/issi/is31fl3733.c \
|
2019-11-15 03:25:40 +01:00
|
|
|
quantum/color.c \
|
2021-08-18 01:54:41 +02:00
|
|
|
i2c_master.c
|