c1905745b3
* Move all headers to `include/zmk` directory. * Update includes to reference them properly. * Add `keymap.c` file from keymap, if found. * Toplevel CONFIG_ZMK_BLE aggregate config setting.
14 lines
244 B
C
14 lines
244 B
C
#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
|