diff options
| author | Drashna Jaelre <drashna@live.com> | 2021-02-23 10:57:24 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-23 10:57:24 -0800 |
| commit | 0b69e4df818c2515cf4eee3d8b6fd4a07775b887 (patch) | |
| tree | bdeee9c5a88c2aef8aca366b3e6ea986f44174c0 /users/drashna/rules.mk | |
| parent | 11146ecd086c6b6736ab3c5947f26a96be642671 (diff) | |
| download | qmk_firmware-0b69e4df818c2515cf4eee3d8b6fd4a07775b887.tar.gz qmk_firmware-0b69e4df818c2515cf4eee3d8b6fd4a07775b887.zip | |
[Keymap] Drashna Updates - Split+OLED edition (#11968)
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 | ||
