diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-05-15 09:41:06 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-05-15 09:41:06 -0400 |
commit | 73bea6218e6681c62a4cbe32f6dd1394f242fa66 (patch) | |
tree | 51a1385906caa72bb0abde4035dfeb098462d453 /src/usb_hid.h | |
parent | 04fe57d3a30c0bb37022e8b019293dbb1fc56197 (diff) |
Some initial BEL HoG support.
Diffstat (limited to 'src/usb_hid.h')
-rw-r--r-- | src/usb_hid.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/usb_hid.h b/src/usb_hid.h index 1f331cd..4b55688 100644 --- a/src/usb_hid.h +++ b/src/usb_hid.h @@ -5,12 +5,10 @@ #include <usb/class/usb_hid.h> #include "keys.h" +#include "hid.h" int zmk_usb_hid_init(); -// TODO: Modifiers! - -int zmk_usb_hid_press_key(zmk_key key); -int zmk_usb_hid_release_key(zmk_key key); +int zmk_usb_hid_send_report(const struct zmk_hid_report *report); #endif |