diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2021-06-26 06:26:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 22:26:19 -0700 |
commit | cd308613946d47dabfe6799717a02b8ca2833b00 (patch) | |
tree | 3b777167eaecdde15fa2fa5afc6298b72f2090fa /common_features.mk | |
parent | 8b059088ba9c310d3790d2839027e966f1082393 (diff) | |
download | qmk_firmware-cd308613946d47dabfe6799717a02b8ca2833b00.tar.gz qmk_firmware-cd308613946d47dabfe6799717a02b8ca2833b00.zip |
Fix CRC for AVR and enable again. (#13253)
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index a790b8432..9373d1de2 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -536,6 +536,7 @@ endif | |||
536 | ifeq ($(strip $(SPLIT_KEYBOARD)), yes) | 536 | ifeq ($(strip $(SPLIT_KEYBOARD)), yes) |
537 | POST_CONFIG_H += $(QUANTUM_DIR)/split_common/post_config.h | 537 | POST_CONFIG_H += $(QUANTUM_DIR)/split_common/post_config.h |
538 | OPT_DEFS += -DSPLIT_KEYBOARD | 538 | OPT_DEFS += -DSPLIT_KEYBOARD |
539 | CRC_ENABLE := yes | ||
539 | 540 | ||
540 | # Include files used by all split keyboards | 541 | # Include files used by all split keyboards |
541 | QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_util.c | 542 | QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_util.c |
@@ -569,7 +570,7 @@ endif | |||
569 | 570 | ||
570 | ifeq ($(strip $(CRC_ENABLE)), yes) | 571 | ifeq ($(strip $(CRC_ENABLE)), yes) |
571 | OPT_DEFS += -DCRC_ENABLE | 572 | OPT_DEFS += -DCRC_ENABLE |
572 | QUANTUM_LIB_SRC += crc.c | 573 | SRC += crc.c |
573 | endif | 574 | endif |
574 | 575 | ||
575 | HAPTIC_ENABLE ?= no | 576 | HAPTIC_ENABLE ?= no |