summaryrefslogtreecommitdiff
path: root/openpcd/firmware/src/os/usb_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'openpcd/firmware/src/os/usb_handler.h')
-rw-r--r--openpcd/firmware/src/os/usb_handler.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/openpcd/firmware/src/os/usb_handler.h b/openpcd/firmware/src/os/usb_handler.h
new file mode 100644
index 0000000..a281c66
--- /dev/null
+++ b/openpcd/firmware/src/os/usb_handler.h
@@ -0,0 +1,15 @@
+#ifndef _USB_HANDLER_H
+#define _USB_HANDLER_H
+
+#include "openpcd.h"
+
+#define MAX_PAYLOAD_LEN (64 - sizeof(struct openpcd_hdr))
+
+typedef int usb_cmd_fn(struct req_ctx *rctx);
+
+extern int usb_hdlr_register(usb_cmd_fn *hdlr, u_int8_t class);
+
+extern void usb_in_process(void);
+extern void usb_out_process(void);
+
+#endif
personal git repositories of Harald Welte. Your mileage may vary