diff options
author | Joel Challis <git@zvecr.com> | 2021-09-08 02:23:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 18:23:11 -0700 |
commit | 60c5bd7b5e0e75f48d9731118b92a3add3342efd (patch) | |
tree | 50bf88fc2217fa46f43afb391e92a21cc1ef0330 /keyboards/handwired/dactyl/rules.mk | |
parent | 04c0704b280c4847c43b164335e9741b19219131 (diff) |
handwired/dactyl - Refactor use of legacy i2c implementation (#14344)
Diffstat (limited to 'keyboards/handwired/dactyl/rules.mk')
-rw-r--r-- | keyboards/handwired/dactyl/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/handwired/dactyl/rules.mk b/keyboards/handwired/dactyl/rules.mk index cb5690ba75..7e97cb8458 100644 --- a/keyboards/handwired/dactyl/rules.mk +++ b/keyboards/handwired/dactyl/rules.mk @@ -28,5 +28,5 @@ SLEEP_LED_ENABLE = no RGBLIGHT_ENABLE = no # project specific files -SRC = twimaster.c \ - matrix.c +QUANTUM_LIB_SRC += i2c_master.c +SRC += matrix.c |