diff options
Diffstat (limited to 'tmk_core/common.mk')
| -rw-r--r-- | tmk_core/common.mk | 6 |
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) | |||
| 42 | endif | 42 | endif |
| 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. |
| 45 | ifeq ($(strip $(CUSTOM_MATRIX)), yes) | 45 | ifeq ($(strip $(SPLIT_KEYBOARD)), yes) |
| 46 | # Do nothing. Custom matrix code. | ||
| 47 | else 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 |
| 49 | else ifeq ($(strip $(DEBOUNCE_ALGO)), manual) | 47 | else 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 |
| 53 | else ifeq ($(strip $(DEBOUNCE_ALGO)), eager_pk) | 51 | else ifeq ($(strip $(DEBOUNCE_ALGO)), eager_pk) |
| 54 | TMK_COMMON_SRC += $(DEBOUNCE)/debounce_eager_pk.c | 52 | TMK_COMMON_SRC += $(DEBOUNCE)/debounce_eager_pk.c |
| 53 | else ifeq ($(strip $(CUSTOM_MATRIX)), yes) | ||
| 54 | # Do nothing. Custom matrix code. | ||
| 55 | else # default algorithm | 55 | else # default algorithm |
| 56 | TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c | 56 | TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c |
| 57 | endif | 57 | endif |
