diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-01 17:29:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 17:29:16 -0400 |
commit | e2ce9c34b55fd4e77e88f7c79ede3e4b9c8ac409 (patch) | |
tree | 7a037f303009283dd8899451456b42d1a208666d /app/include | |
parent | 4f494ac5f9a52738bffe6a5dcebef227a6ffd185 (diff) | |
parent | 307a8d09db78b95c858c41bd5549c721da7eb1f8 (diff) |
Merge pull request #231 from petejohanson/core/usb-status-api
Add API to access current USB status
Diffstat (limited to 'app/include')
-rw-r--r-- | app/include/zmk/usb_hid.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/include/zmk/usb_hid.h b/app/include/zmk/usb_hid.h index 7ee2629..83a4540 100644 --- a/app/include/zmk/usb_hid.h +++ b/app/include/zmk/usb_hid.h @@ -14,4 +14,6 @@ int zmk_usb_hid_init(); +enum usb_dc_status_code zmk_usb_hid_get_status(); + int zmk_usb_hid_send_report(u8_t *report, size_t len); |