diff options
author | Joel Challis <git@zvecr.com> | 2023-11-12 22:30:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-12 22:30:27 +0000 |
commit | e884e42ce98ad8994477deef26e6ad27b8b3643c (patch) | |
tree | 8e897e11952d488f8fc439db5b5aa7c5342faa9d /keyboards/gmmk | |
parent | 786ebf87608dd4d7232cd0e66638382a55ceafa4 (diff) |
Generalise ADC driver source inclusion (#22448)
Diffstat (limited to 'keyboards/gmmk')
-rw-r--r-- | keyboards/gmmk/numpad/rules.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/keyboards/gmmk/numpad/rules.mk b/keyboards/gmmk/numpad/rules.mk index e30aa52954..d289eb81a4 100644 --- a/keyboards/gmmk/numpad/rules.mk +++ b/keyboards/gmmk/numpad/rules.mk @@ -18,5 +18,6 @@ RGB_MATRIX_ENABLE = yes LTO_ENABLE = yes -SRC += analog.c \ - matrix.c
\ No newline at end of file +ANALOG_DRIVER_REQUIRED = yes + +SRC += matrix.c |