diff options
| author | Aladdin Bakosh <[email protected]> | 2023-06-23 10:26:45 +0200 |
|---|---|---|
| committer | Aladdin Bakosh <[email protected]> | 2023-07-17 11:54:09 +0200 |
| commit | 1923b1845d033a3d42db9b739029b2cc39248150 (patch) | |
| tree | 173fefe69dda1420f93d45035c2dcbdd86dae703 /src/host | |
| parent | f1e006d09bd32088ab421d0b519eb89c531eda4e (diff) | |
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); |
