summaryrefslogtreecommitdiff
path: root/openpcd/firmware/src/usb_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'openpcd/firmware/src/usb_handler.h')
-rw-r--r--openpcd/firmware/src/usb_handler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/openpcd/firmware/src/usb_handler.h b/openpcd/firmware/src/usb_handler.h
index 70c9352..b4ecfbd 100644
--- a/openpcd/firmware/src/usb_handler.h
+++ b/openpcd/firmware/src/usb_handler.h
@@ -1,6 +1,12 @@
#ifndef _USB_HANDLER_H
#define _USB_HANDLER_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);
personal git repositories of Harald Welte. Your mileage may vary