diff options
author | Drashna Jaelre <drashna@live.com> | 2021-07-25 21:24:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 21:24:47 -0700 |
commit | 9e782e4f1415e25b0f8349d51400fdfe29ebb0c1 (patch) | |
tree | a7080eb494eaa1369a07ab341754a13083738441 | |
parent | f945c352e7db3fedb16c90f9f176b3df6e0b62ae (diff) | |
download | qmk_firmware-9e782e4f1415e25b0f8349d51400fdfe29ebb0c1.tar.gz qmk_firmware-9e782e4f1415e25b0f8349d51400fdfe29ebb0c1.zip |
[Bug] Include gpio.h in solenoid driver for GPIO Control functions (#13716)
-rw-r--r-- | drivers/haptic/solenoid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/haptic/solenoid.c b/drivers/haptic/solenoid.c index 3e61d5a17..25cf34465 100644 --- a/drivers/haptic/solenoid.c +++ b/drivers/haptic/solenoid.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include "timer.h" | 18 | #include "timer.h" |
19 | #include "solenoid.h" | 19 | #include "solenoid.h" |
20 | #include "haptic.h" | 20 | #include "haptic.h" |
21 | #include "gpio.h" | ||
21 | 22 | ||
22 | bool solenoid_on = false; | 23 | bool solenoid_on = false; |
23 | bool solenoid_buzzing = false; | 24 | bool solenoid_buzzing = false; |