diff options
author | Ryan <fauxpark@gmail.com> | 2021-03-01 07:11:39 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 07:11:39 +1100 |
commit | 1a7f2c8f453d4da6ed8622e52d5b788bc6dad480 (patch) | |
tree | 1c65ce60dd863023173c4f18b2c78ba592703d54 /common_features.mk | |
parent | e6905805bb5e272187ae9a780ab1d345249efbc3 (diff) | |
download | qmk_firmware-1a7f2c8f453d4da6ed8622e52d5b788bc6dad480.tar.gz qmk_firmware-1a7f2c8f453d4da6ed8622e52d5b788bc6dad480.zip |
Extract sendstring into its own compilation unit (#12060)
* Extract sendstring into its own compilation unit
* License headers?
* Put this include in the header
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index d238b28124..8c9d0a90c7 100644 --- a/common_features.mk +++ b/common_features.mk @@ -17,6 +17,7 @@ SERIAL_PATH := $(QUANTUM_PATH)/serial_link QUANTUM_SRC += \ $(QUANTUM_DIR)/quantum.c \ + $(QUANTUM_DIR)/send_string.c \ $(QUANTUM_DIR)/bitwise.c \ $(QUANTUM_DIR)/led.c \ $(QUANTUM_DIR)/keymap_common.c \ |