blob: 1323bea8935afe79befd68e4a9fe5f9b20384630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
OLED_ENABLE= yes # OLED display
WPM_ENABLE = yes
TAP_DANCE_ENABLE = yes
COMBO_ENABLE = yes
EXTRAKEY_ENABLE = yes
# If you want to change the display of OLED, you need to change here
# SRC += ./lib/rgb_state_reader.c
SRC += ./lib/layer_state_reader.c
SRC += ./lib/logo_reader.c
SRC += ./lib/keylogger.c
SRC += ./features/bongo_cat.c
# Reduce firmware size
# https://thomasbaart.nl/2018/12/01/reducing-firmware-size-in-qmk/
# also requires in config.h
LTO_ENABLE = yes
|