aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common.mk')
-rw-r--r--tmk_core/common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk
index 72b2d3cc8..85f903fda 100644
--- a/tmk_core/common.mk
+++ b/tmk_core/common.mk
@@ -42,9 +42,7 @@ ifeq ($(PLATFORM),TEST)
42endif 42endif
43 43
44# Debounce Modules. If implemented in matrix.c, don't use these. 44# Debounce Modules. If implemented in matrix.c, don't use these.
45ifeq ($(strip $(CUSTOM_MATRIX)), yes) 45ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
46 # Do nothing. Custom matrix code.
47else ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
48 # Do nothing, debouncing is inside matrix.c inside split_common 46 # Do nothing, debouncing is inside matrix.c inside split_common
49else ifeq ($(strip $(DEBOUNCE_ALGO)), manual) 47else ifeq ($(strip $(DEBOUNCE_ALGO)), manual)
50 # Do nothing. do your debouncing in matrix.c 48 # Do nothing. do your debouncing in matrix.c
@@ -52,6 +50,8 @@ else ifeq ($(strip $(DEBOUNCE_ALGO)), sym_g)
52 TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c 50 TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c
53else ifeq ($(strip $(DEBOUNCE_ALGO)), eager_pk) 51else ifeq ($(strip $(DEBOUNCE_ALGO)), eager_pk)
54 TMK_COMMON_SRC += $(DEBOUNCE)/debounce_eager_pk.c 52 TMK_COMMON_SRC += $(DEBOUNCE)/debounce_eager_pk.c
53else ifeq ($(strip $(CUSTOM_MATRIX)), yes)
54 # Do nothing. Custom matrix code.
55else # default algorithm 55else # default algorithm
56 TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c 56 TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c
57endif 57endif