diff options
| author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2018-12-25 04:14:57 +0900 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-12-24 11:14:57 -0800 |
| commit | 72d4e4bfd76b2c83b89787f8b3a8ba779a3e8d81 (patch) | |
| tree | 694d3d9251aa752c11788e1e8550cba0cb78578b /common_features.mk | |
| parent | 2149f3b5889f898fecde845a03d61c1a854d9393 (diff) | |
| download | qmk_firmware-72d4e4bfd76b2c83b89787f8b3a8ba779a3e8d81.tar.gz qmk_firmware-72d4e4bfd76b2c83b89787f8b3a8ba779a3e8d81.zip | |
Replace serial.c of quantum/split_common/ (#4669)
* Add provisional Helix implementation to test the quantum/split_common.
* copy keyboards/helix/serial.[ch] to quantum/split_common/
* Make serial.c a pure driver.
Remove buffer name and buffer size from serial.c. They should be placed in the caller(matrix.c, split_utils.c).
* remove quantum/split_common/serial_backward_compatibility.h
* Changed array serial_master_buffer to structure serial_m2s_buffer.
* Changed array serial_slave_buffer to structure serial_s2m_buffer.
* Change keyboards/miniaxe/matrix.c
I also made changes to quantum/split_comon/matrix.c to keyboards/miniaxe/matrix.c.
Note: I contacted @ka2hiro, creator of miniaxe, and I got permission to change keyboards/miniaxe/matrix.c.
* update history comment in quantum/split_common/serial.c
* Revert "Add provisional Helix implementation to test the quantum/split_common."
This reverts commit 168c82ef82c88e79979d9796bab9cc819cc2f685.
* fix keyboards/miniaxe/matrix.c, quantum/split_common/matrix.c
avr-gcc 4.9.[23] report error.
avr-gcc 5.4.0, avr-gcc 7.3.0 pass.
It is funny.
* update comment quantum/split_common/serial.c
* Reserve RGBLIGHT_SPLIT macro in quantum/split_common
Diffstat (limited to 'common_features.mk')
| -rw-r--r-- | common_features.mk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common_features.mk b/common_features.mk index 73aab5d84..883681324 100644 --- a/common_features.mk +++ b/common_features.mk | |||
| @@ -263,11 +263,6 @@ ifneq ($(strip $(CUSTOM_MATRIX)), yes) | |||
| 263 | endif | 263 | endif |
| 264 | 264 | ||
| 265 | ifeq ($(strip $(SPLIT_KEYBOARD)), yes) | 265 | ifeq ($(strip $(SPLIT_KEYBOARD)), yes) |
| 266 | SERIAL_BACKWARD_COMPAT := $(wildcard $(QUANTUM_DIR)/split_common/serial_backward_compatibility.h) | ||
| 267 | ifneq ($(SERIAL_BACKWARD_COMPAT),) | ||
| 268 | CONFIG_H += $(SERIAL_BACKWARD_COMPAT) | ||
| 269 | # $(info CONFIG_H=$(CONFIG_H)) | ||
| 270 | endif | ||
| 271 | OPT_DEFS += -DSPLIT_KEYBOARD | 266 | OPT_DEFS += -DSPLIT_KEYBOARD |
| 272 | QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_flags.c \ | 267 | QUANTUM_SRC += $(QUANTUM_DIR)/split_common/split_flags.c \ |
| 273 | $(QUANTUM_DIR)/split_common/split_util.c | 268 | $(QUANTUM_DIR)/split_common/split_util.c |
