diff options
author | Ryan <fauxpark@gmail.com> | 2022-02-11 23:37:36 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 12:37:36 +0000 |
commit | 5f10387c41b63f022dc4169a29b3b4fa0e9721a9 (patch) | |
tree | 84f0e3e453a99e30f98cfdb6355030b55c9fb054 | |
parent | 89fc2f166fd43808a00769aba68ce64890e31570 (diff) | |
download | qmk_firmware-5f10387c41b63f022dc4169a29b3b4fa0e9721a9.tar.gz qmk_firmware-5f10387c41b63f022dc4169a29b3b4fa0e9721a9.zip |
handwired/promethium: fix missing include (#16317)
-rw-r--r-- | keyboards/handwired/promethium/promethium.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/promethium/promethium.h b/keyboards/handwired/promethium/promethium.h index c4c90176b..e40d67e9f 100644 --- a/keyboards/handwired/promethium/promethium.h +++ b/keyboards/handwired/promethium/promethium.h | |||
@@ -1,6 +1,6 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #include <stdint.h> | 3 | #include "quantum.h" |
4 | 4 | ||
5 | void battery_poll(uint8_t level); | 5 | void battery_poll(uint8_t level); |
6 | void led_set_kb(uint8_t usb_led); | 6 | void led_set_kb(uint8_t usb_led); |