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 /drivers/haptic | |
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)
Diffstat (limited to 'drivers/haptic')
-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 3e61d5a171..25cf344655 100644 --- a/drivers/haptic/solenoid.c +++ b/drivers/haptic/solenoid.c @@ -18,6 +18,7 @@ #include "timer.h" #include "solenoid.h" #include "haptic.h" +#include "gpio.h" bool solenoid_on = false; bool solenoid_buzzing = false; |