diff options
| author | Ha Thach <[email protected]> | 2023-07-18 15:11:02 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-18 15:11:02 +0700 |
| commit | 6798e7e059d81268f04a3e206e6c4354b295dbf1 (patch) | |
| tree | 22bf762f8a59309e90fb72b41b71c3c7b57f8611 /src/host | |
| parent | c5e23eaa144e77da4377bbc15b567c0e769835a8 (diff) | |
| parent | 3230d5b1ea45ac2b17e4abaac2bfbe190360fff8 (diff) | |
Merge pull request #2120 from abakosh/RA_STALL
fix(RA_hcd): STALL status can be also 3 not only 2
Diffstat (limited to 'src/host')
| -rw-r--r-- | src/host/usbh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/usbh.c b/src/host/usbh.c index f3e9d3858..184bda23b 100644 --- a/src/host/usbh.c +++ b/src/host/usbh.c @@ -791,7 +791,7 @@ bool usbh_edpt_xfer_with_callback(uint8_t dev_addr, uint8_t ep_addr, uint8_t * b uint8_t const dir = tu_edpt_dir(ep_addr); tu_edpt_state_t* ep_state = &dev->ep_status[epnum][dir]; - TU_LOG_USBH(" Queue EP %02X with %u bytes ... ", ep_addr, total_bytes); + TU_LOG_USBH(" Queue EP %02X with %u bytes ... \r\n", ep_addr, total_bytes); // Attempt to transfer on a busy endpoint, sound like an race condition ! TU_ASSERT(ep_state->busy == 0); |
