mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
Fix CRC for AVR and enable again. (#13253)
This commit is contained in:
parent
8b059088ba
commit
cd30861394
1 changed files with 2 additions and 1 deletions
|
@ -536,6 +536,7 @@ endif
|
||||||
ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
|
ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
|
||||||
POST_CONFIG_H += $(QUANTUM_DIR)/split_common/post_config.h
|
POST_CONFIG_H += $(QUANTUM_DIR)/split_common/post_config.h
|
||||||
OPT_DEFS += -DSPLIT_KEYBOARD
|
OPT_DEFS += -DSPLIT_KEYBOARD
|
||||||
|
CRC_ENABLE := yes
|
||||||
|
|
||||||
# Include files used by all split keyboards
|
# Include files used by all split keyboards
|
||||||
QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_util.c
|
QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_util.c
|
||||||
|
@ -569,7 +570,7 @@ endif
|
||||||
|
|
||||||
ifeq ($(strip $(CRC_ENABLE)), yes)
|
ifeq ($(strip $(CRC_ENABLE)), yes)
|
||||||
OPT_DEFS += -DCRC_ENABLE
|
OPT_DEFS += -DCRC_ENABLE
|
||||||
QUANTUM_LIB_SRC += crc.c
|
SRC += crc.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
HAPTIC_ENABLE ?= no
|
HAPTIC_ENABLE ?= no
|
||||||
|
|
Loading…
Reference in a new issue