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 d238b2812..8c9d0a90c 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -17,6 +17,7 @@ SERIAL_PATH := $(QUANTUM_PATH)/serial_link | |||
17 | 17 | ||
18 | QUANTUM_SRC += \ | 18 | QUANTUM_SRC += \ |
19 | $(QUANTUM_DIR)/quantum.c \ | 19 | $(QUANTUM_DIR)/quantum.c \ |
20 | $(QUANTUM_DIR)/send_string.c \ | ||
20 | $(QUANTUM_DIR)/bitwise.c \ | 21 | $(QUANTUM_DIR)/bitwise.c \ |
21 | $(QUANTUM_DIR)/led.c \ | 22 | $(QUANTUM_DIR)/led.c \ |
22 | $(QUANTUM_DIR)/keymap_common.c \ | 23 | $(QUANTUM_DIR)/keymap_common.c \ |