diff options
Diffstat (limited to 'users/drashna/rules.mk')
| -rw-r--r-- | users/drashna/rules.mk | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk index b7523a436..2ae01c62e 100644 --- a/users/drashna/rules.mk +++ b/users/drashna/rules.mk | |||
| @@ -66,3 +66,27 @@ ifeq ($(strip $(PIMORONI_TRACKBALL_ENABLE)), yes) | |||
| 66 | SRC += pimoroni_trackball.c | 66 | SRC += pimoroni_trackball.c |
| 67 | QUANTUM_LIB_SRC += i2c_master.c | 67 | QUANTUM_LIB_SRC += i2c_master.c |
| 68 | endif | 68 | endif |
| 69 | |||
| 70 | |||
| 71 | ifeq ($(strip $(SPLIT_KEYBOARD)), yes) | ||
| 72 | ifneq ($(strip $(SPLIT_TRANSPORT)), custom) | ||
| 73 | SPLIT_TRANSPORT = custom | ||
| 74 | QUANTUM_LIB_SRC += drashna_transport.c | ||
| 75 | OPT_DEFS += -DDRASHNA_CUSTOM_TRANSPORT | ||
| 76 | # Unused functions are pruned away, which is why we can add multiple drivers here without bloat. | ||
| 77 | ifeq ($(PLATFORM),AVR) | ||
| 78 | ifneq ($(NO_I2C),yes) | ||
| 79 | QUANTUM_LIB_SRC += i2c_master.c \ | ||
| 80 | i2c_slave.c | ||
| 81 | endif | ||
| 82 | endif | ||
| 83 | |||
| 84 | SERIAL_DRIVER ?= bitbang | ||
| 85 | OPT_DEFS += -DSERIAL_DRIVER_$(strip $(shell echo $(SERIAL_DRIVER) | tr '[:lower:]' '[:upper:]')) | ||
| 86 | ifeq ($(strip $(SERIAL_DRIVER)), bitbang) | ||
| 87 | QUANTUM_LIB_SRC += serial.c | ||
| 88 | else | ||
| 89 | QUANTUM_LIB_SRC += serial_$(strip $(SERIAL_DRIVER)).c | ||
| 90 | endif | ||
| 91 | endif | ||
| 92 | endif | ||
