Unify matrix for split common and regular matrix (#13330)

This commit is contained in:
Drashna Jaelre
2021-07-11 14:31:35 -07:00
committed by GitHub
parent 0b06452d00
commit ccc0b23a75
3 changed files with 126 additions and 353 deletions

View File

@@ -511,11 +511,7 @@ ifneq ($(strip $(CUSTOM_MATRIX)), yes)
# if 'lite' then skip the actual matrix implementation
ifneq ($(strip $(CUSTOM_MATRIX)), lite)
# Include the standard or split matrix code if needed
ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
QUANTUM_SRC += $(QUANTUM_DIR)/split_common/matrix.c
else
QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
endif
QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
endif
endif