diff options
| author | sakumisu <[email protected]> | 2025-07-25 22:24:35 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2025-07-25 22:24:35 +0800 |
| commit | a9ec951c936aa40f1a50e56c841f71f1756cbe4f (patch) | |
| tree | 585528240143bdfd33a9491c3a81fd3ca96dafa8 | |
| parent | 9de28f9342a2dadfe87d095ac57dddbe0d46e578 (diff) | |
update(common/usb_hc): change interval u8 to u16 for us
Signed-off-by: sakumisu <[email protected]>
| -rw-r--r-- | common/usb_hc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/usb_hc.h b/common/usb_hc.h index 3335af2f..d71e2de3 100644 --- a/common/usb_hc.h +++ b/common/usb_hc.h @@ -39,7 +39,7 @@ struct usbh_urb { struct usbh_hubport *hport; struct usb_endpoint_descriptor *ep; uint8_t data_toggle; - uint8_t interval; + uint16_t interval; struct usb_setup_packet *setup; uint8_t *transfer_buffer; uint32_t transfer_buffer_length; |
