summaryrefslogtreecommitdiff
path: root/src/device/usbd_pvt.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-08-07 12:13:13 +0700
committerhathach <[email protected]>2020-08-07 12:13:13 +0700
commit9df8057702fcbc8086b223c164e1734db7beca25 (patch)
tree5faef86eca48cc7664ae0b29db3e885edba75bdb /src/device/usbd_pvt.h
parentc14c0cfc9fec9101b63df682c5fa5ac0576de0f8 (diff)
parentc682c30fa6a99a91d02496de39a752b5c96a4634 (diff)
Merge branch 'master' into add-app-driver
Diffstat (limited to 'src/device/usbd_pvt.h')
-rw-r--r--src/device/usbd_pvt.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/device/usbd_pvt.h b/src/device/usbd_pvt.h
index d6eb289c1..e430a81d9 100644
--- a/src/device/usbd_pvt.h
+++ b/src/device/usbd_pvt.h
@@ -39,17 +39,17 @@
typedef struct
{
-#if CFG_TUSB_DEBUG >= 2
+ #if CFG_TUSB_DEBUG >= 2
char const* name;
-#endif
+ #endif
- void (* init ) (void);
- void (* reset ) (uint8_t rhport);
- bool (* open ) (uint8_t rhport, tusb_desc_interface_t const * desc_intf, uint16_t* p_length);
- bool (* control_request ) (uint8_t rhport, tusb_control_request_t const * request);
- bool (* control_complete ) (uint8_t rhport, tusb_control_request_t const * request);
- bool (* xfer_cb ) (uint8_t rhport, uint8_t ep_addr, xfer_result_t event, uint32_t xferred_bytes);
- void (* sof ) (uint8_t rhport); /* optional */
+ void (* init ) (void);
+ void (* reset ) (uint8_t rhport);
+ uint16_t (* open ) (uint8_t rhport, tusb_desc_interface_t const * desc_intf, uint16_t max_len);
+ bool (* control_request ) (uint8_t rhport, tusb_control_request_t const * request);
+ bool (* control_complete ) (uint8_t rhport, tusb_control_request_t const * request);
+ bool (* xfer_cb ) (uint8_t rhport, uint8_t ep_addr, xfer_result_t event, uint32_t xferred_bytes);
+ void (* sof ) (uint8_t rhport); /* optional */
} usbd_class_driver_t;
// Invoked when initializing device stack to get additional class drivers.