diff options
author | Joel Challis <git@zvecr.com> | 2021-10-07 02:32:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 12:32:05 +1100 |
commit | 1c0347b8b85de03691c7810f98f38bb245783985 (patch) | |
tree | abd0d58a1e2d5134f1c307ad392c8616cab3266a /common_features.mk | |
parent | 60297a1099e5a310bd10a4d59fcb80bbc7fe4be5 (diff) | |
download | qmk_firmware-1c0347b8b85de03691c7810f98f38bb245783985.tar.gz qmk_firmware-1c0347b8b85de03691c7810f98f38bb245783985.zip |
Remove SERIAL_LINK feature (#14727)
* Remove SERIAL_LINK
* more stale paths in doxygen-todo
* Fix
* More refs
* Update testing docs
* Update doxygen-todo
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/common_features.mk b/common_features.mk index fc9595ddd..3c956b7aa 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -13,8 +13,6 @@ | |||
13 | # You should have received a copy of the GNU General Public License | 13 | # You should have received a copy of the GNU General Public License |
14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 | ||
16 | SERIAL_PATH := $(QUANTUM_PATH)/serial_link | ||
17 | |||
18 | QUANTUM_SRC += \ | 16 | QUANTUM_SRC += \ |
19 | $(QUANTUM_DIR)/quantum.c \ | 17 | $(QUANTUM_DIR)/quantum.c \ |
20 | $(QUANTUM_DIR)/send_string.c \ | 18 | $(QUANTUM_DIR)/send_string.c \ |
@@ -363,17 +361,6 @@ ifeq ($(strip $(PRINTING_ENABLE)), yes) | |||
363 | SRC += $(TMK_DIR)/protocol/serial_uart.c | 361 | SRC += $(TMK_DIR)/protocol/serial_uart.c |
364 | endif | 362 | endif |
365 | 363 | ||
366 | ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes) | ||
367 | SERIAL_SRC := $(wildcard $(SERIAL_PATH)/protocol/*.c) | ||
368 | SERIAL_SRC += $(wildcard $(SERIAL_PATH)/system/*.c) | ||
369 | SERIAL_DEFS += -DSERIAL_LINK_ENABLE | ||
370 | COMMON_VPATH += $(SERIAL_PATH) | ||
371 | |||
372 | SRC += $(patsubst $(QUANTUM_PATH)/%,%,$(SERIAL_SRC)) | ||
373 | OPT_DEFS += $(SERIAL_DEFS) | ||
374 | VAPTH += $(SERIAL_PATH) | ||
375 | endif | ||
376 | |||
377 | VARIABLE_TRACE ?= no | 364 | VARIABLE_TRACE ?= no |
378 | ifneq ($(strip $(VARIABLE_TRACE)),no) | 365 | ifneq ($(strip $(VARIABLE_TRACE)),no) |
379 | SRC += $(QUANTUM_DIR)/variable_trace.c | 366 | SRC += $(QUANTUM_DIR)/variable_trace.c |