summaryrefslogtreecommitdiffstats
path: root/common_features.mk
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-02-01 01:12:52 -0800
committerGitHub <noreply@github.com>2021-02-01 20:12:52 +1100
commit9591e992cc03f35a1f835e25af0cec2075263067 (patch)
treed130b6ec25576a52357410f313c3d02199228d55 /common_features.mk
parentdca4388056383b217a4a29eff6e36ce916997cbd (diff)
Move transport.c to QUANTUM_LIB_SRC (#11751)
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/common_features.mk b/common_features.mk
index 6ed7e73b66..6365955a7f 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -135,7 +135,7 @@ else
# This ensures that the EEPROM page buffer fits into RAM
USE_PROCESS_STACKSIZE = 0x600
USE_EXCEPTIONS_STACKSIZE = 0x300
-
+
SRC += $(PLATFORM_COMMON_DIR)/eeprom_stm32.c
SRC += $(PLATFORM_COMMON_DIR)/flash_stm32.c
OPT_DEFS += -DEEPROM_EMU_STM32F042x6
@@ -483,7 +483,7 @@ ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
# Determine which (if any) transport files are required
ifneq ($(strip $(SPLIT_TRANSPORT)), custom)
- QUANTUM_SRC += $(QUANTUM_DIR)/split_common/transport.c
+ QUANTUM_LIB_SRC += $(QUANTUM_DIR)/split_common/transport.c
# Functions added via QUANTUM_LIB_SRC are only included in the final binary if they're called.
# Unused functions are pruned away, which is why we can add multiple drivers here without bloat.
ifeq ($(PLATFORM),AVR)