summary refs log tree commit diff
diff options
context:
space:
mode:
authorDasky <32983009+daskygit@users.noreply.github.com>2021-06-26 06:26:19 +0100
committerGitHub <noreply@github.com>2021-06-25 22:26:19 -0700
commitcd308613946d47dabfe6799717a02b8ca2833b00 (patch)
tree3b777167eaecdde15fa2fa5afc6298b72f2090fa
parent8b059088ba9c310d3790d2839027e966f1082393 (diff)
Fix CRC for AVR and enable again. (#13253)
-rw-r--r--common_features.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk
index a790b84328..9373d1de25 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -536,6 +536,7 @@ endif
 ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
     POST_CONFIG_H += $(QUANTUM_DIR)/split_common/post_config.h
     OPT_DEFS += -DSPLIT_KEYBOARD
+    CRC_ENABLE := yes
 
     # Include files used by all split keyboards
     QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_util.c
@@ -569,7 +570,7 @@ endif
 
 ifeq ($(strip $(CRC_ENABLE)), yes)
     OPT_DEFS += -DCRC_ENABLE
-    QUANTUM_LIB_SRC += crc.c
+    SRC += crc.c
 endif
 
 HAPTIC_ENABLE ?= no