aboutsummaryrefslogtreecommitdiff
path: root/common_features.mk
diff options
context:
space:
mode:
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk
index 1a079a8df..15637d760 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -537,7 +537,11 @@ ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
537 537
538 # Determine which (if any) transport files are required 538 # Determine which (if any) transport files are required
539 ifneq ($(strip $(SPLIT_TRANSPORT)), custom) 539 ifneq ($(strip $(SPLIT_TRANSPORT)), custom)
540 QUANTUM_LIB_SRC += $(QUANTUM_DIR)/split_common/transport.c 540 QUANTUM_SRC += $(QUANTUM_DIR)/split_common/transport.c \
541 $(QUANTUM_DIR)/split_common/transactions.c
542
543 OPT_DEFS += -DSPLIT_COMMON_TRANSACTIONS
544
541 # Functions added via QUANTUM_LIB_SRC are only included in the final binary if they're called. 545 # Functions added via QUANTUM_LIB_SRC are only included in the final binary if they're called.
542 # Unused functions are pruned away, which is why we can add multiple drivers here without bloat. 546 # Unused functions are pruned away, which is why we can add multiple drivers here without bloat.
543 ifeq ($(PLATFORM),AVR) 547 ifeq ($(PLATFORM),AVR)