diff options
| author | hathach <[email protected]> | 2022-03-10 22:22:05 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-03-10 22:22:05 +0700 |
| commit | 171d021ab56960f8d7e222faa263168ead0f9d6a (patch) | |
| tree | fe14a6aa391c89c328b1ecb9ae1ae90f4c8da42a /src/device | |
| parent | b9ca301527040458bd369cf967732a76d5139222 (diff) | |
refactor and integrate usbh control xfer back to usbh.c
fix enumeration with hub when reset port before set address
Diffstat (limited to 'src/device')
| -rw-r--r-- | src/device/usbd_pvt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/usbd_pvt.h b/src/device/usbd_pvt.h index dae95cebb..29753451e 100644 --- a/src/device/usbd_pvt.h +++ b/src/device/usbd_pvt.h @@ -80,7 +80,7 @@ bool usbd_edpt_xfer_fifo(uint8_t rhport, uint8_t ep_addr, tu_fifo_t * ff, uint16 // If caller does not make any transfer, it must release endpoint for others. bool usbd_edpt_claim(uint8_t rhport, uint8_t ep_addr); -// Release an endpoint without submitting a transfer +// Release claimed endpoint without submitting a transfer bool usbd_edpt_release(uint8_t rhport, uint8_t ep_addr); // Check if endpoint is busy transferring |
