2020-02-21 07:12:15 +01:00
|
|
|
# MCU name
|
|
|
|
MCU = MK20DX256
|
2017-01-04 08:41:52 +01:00
|
|
|
|
2020-08-25 10:58:00 +02:00
|
|
|
# Bootloader selection
|
|
|
|
BOOTLOADER = kiibohd
|
2020-08-22 00:42:28 +02:00
|
|
|
|
2017-01-04 08:41:52 +01:00
|
|
|
# Board: it should exist either in <chibios>/os/hal/boards/
|
|
|
|
# or <this_dir>/boards
|
|
|
|
# - BOARD =
|
|
|
|
# - PJRC_TEENSY_LC for Teensy LC
|
|
|
|
# - PJRC_TEENSY_3 for Teensy 3.0
|
|
|
|
# - PJRC_TEENSY_3_1 for Teensy 3.1 or 3.2
|
|
|
|
# - MCHCK_K20 for Infinity KB
|
2018-04-04 04:43:40 +02:00
|
|
|
BOARD = IC_TEENSY_3_1
|
2017-01-04 08:41:52 +01:00
|
|
|
|
|
|
|
# Build Options
|
|
|
|
# comment out to disable the options.
|
|
|
|
#
|
2017-06-30 22:09:52 +02:00
|
|
|
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
|
2017-01-04 08:41:52 +01:00
|
|
|
## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)
|
2017-06-30 22:09:52 +02:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
#CONSOLE_ENABLE = yes # Console for debug
|
|
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
|
|
#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
|
|
|
|
NKRO_ENABLE = yes # USB Nkey Rollover
|
|
|
|
CUSTOM_MATRIX = yes # Custom matrix file
|
|
|
|
BACKLIGHT_ENABLE = yes
|
2020-01-27 23:31:54 +01:00
|
|
|
BACKLIGHT_DRIVER = custom
|
2017-06-30 22:09:52 +02:00
|
|
|
VISUALIZER_ENABLE = yes
|
2017-06-26 03:30:40 +02:00
|
|
|
|
2020-02-21 07:12:15 +01:00
|
|
|
# project specific files
|
|
|
|
SRC = matrix.c \
|
|
|
|
led.c
|
|
|
|
|
2017-07-09 19:35:33 +02:00
|
|
|
LED_DRIVER = is31fl3731c
|
2018-04-04 04:43:40 +02:00
|
|
|
LED_WIDTH = 16
|
|
|
|
LED_HEIGHT = 5
|
2020-01-02 23:58:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Enter lower-power sleep mode when on the ChibiOS idle thread
|
|
|
|
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
|