diff options
author | Ryan <fauxpark@gmail.com> | 2023-03-20 08:12:05 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 08:12:05 +1100 |
commit | 3c144fac5e2b634166f6b9cc0fc45029d63d3398 (patch) | |
tree | c3e408ca9fa27721c19f4fc0ba8b4119798e5dd2 /keyboards/hardwareabstraction/handwire | |
parent | 9d302f9b7fa7fc88766de322a52d1a1be38e723c (diff) |
Clean up usage of `QMK_KEYBOARD_H` (#20167)
Diffstat (limited to 'keyboards/hardwareabstraction/handwire')
-rw-r--r-- | keyboards/hardwareabstraction/handwire/handwire.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/hardwareabstraction/handwire/handwire.c b/keyboards/hardwareabstraction/handwire/handwire.c index c61e4c7626..4981e703e4 100644 --- a/keyboards/hardwareabstraction/handwire/handwire.c +++ b/keyboards/hardwareabstraction/handwire/handwire.c @@ -1,7 +1,8 @@ // Copyright 2022 Andy Tsai (@atsai) // SPDX-License-Identifier: GPL-2.0-or-later -#include QMK_KEYBOARD_H +#include "quantum.h" + static uint16_t buzzer_timer = 0; static uint8_t buzzer_dwell = 15; static uint8_t buzzer_dwell_change = 1; |