solo1/usbhid.h

17 wiersze
221 B
C
Czysty Zwykły widok Historia

2018-04-28 17:40:28 +00:00
#ifndef _USBHID_H
#define _USBHID_H
// HID message size in bytes
#define HID_MESSAGE_SIZE 64
void usbhid_init();
void usbhid_recv(uint8_t * msg);
void usbhid_send(uint8_t * msg);
void usbhid_close();
#endif