blob: 893e7e48c4d852e14e88361527cb978f484cc115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef ZMK_USB_HID
#define ZMK_USB_HID
#include <usb/usb_device.h>
#include <usb/class/usb_hid.h>
#include <zmk/keys.h>
#include <zmk/hid.h>
int zmk_usb_hid_init();
int zmk_usb_hid_send_report(const struct zmk_hid_report *report);
#endif
|