2020-05-06 06:09:05 +10:00
|
|
|
#ifndef ZMK_USB_HID
|
|
|
|
#define ZMK_USB_HID
|
|
|
|
|
|
|
|
#include <usb/usb_device.h>
|
|
|
|
#include <usb/class/usb_hid.h>
|
|
|
|
|
2020-05-18 23:11:46 +10:00
|
|
|
#include <zmk/keys.h>
|
|
|
|
#include <zmk/hid.h>
|
2020-05-13 04:15:33 +10:00
|
|
|
|
2020-05-06 06:09:05 +10:00
|
|
|
int zmk_usb_hid_init();
|
|
|
|
|
2020-05-15 23:41:06 +10:00
|
|
|
int zmk_usb_hid_send_report(const struct zmk_hid_report *report);
|
2020-05-06 06:09:05 +10:00
|
|
|
|
|
|
|
#endif
|