1
0
Fork 0

Added Auto Shift, tap key = normal, hold key = shifted state.

This commit is contained in:
Jeremy Cowgar 2017-09-17 01:33:28 -04:00 committed by Jack Humbert
parent 87021371e6
commit abba393f57
8 changed files with 375 additions and 0 deletions

View file

@ -119,6 +119,11 @@ ifeq ($(strip $(PRINTING_ENABLE)), yes)
SRC += $(TMK_DIR)/protocol/serial_uart.c
endif
ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes)
OPT_DEFS += -DAUTO_SHIFT_ENABLE
SRC += $(QUANTUM_DIR)/process_keycode/process_auto_shift.c
endif
ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes)
SRC += $(patsubst $(QUANTUM_PATH)/%,%,$(SERIAL_SRC))
OPT_DEFS += $(SERIAL_DEFS)