diff options
| author | hathach <[email protected]> | 2021-09-01 16:52:27 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-09-01 16:52:27 +0700 |
| commit | fc889ece74626f49a08898039102f0a9bf2b85a1 (patch) | |
| tree | 3b7762f39a0ad4af4ca7b48883aff7fe12eca50b /src/device/dcd.h | |
| parent | 90dc9bc289e12950fba9ea5dafe20e1b0777d0ba (diff) | |
rp2040 correct ep set/clear stall
- stall will remove pending (not complete) transfer. Correct reset data
toggle when clear stall.
- remove buf ctrl debug code
Diffstat (limited to 'src/device/dcd.h')
| -rw-r--r-- | src/device/dcd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/dcd.h b/src/device/dcd.h index 8d042bbde..d43a0dd9a 100644 --- a/src/device/dcd.h +++ b/src/device/dcd.h @@ -153,7 +153,7 @@ bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer // This API is optional, may be useful for register-based for transferring data. bool dcd_edpt_xfer_fifo (uint8_t rhport, uint8_t ep_addr, tu_fifo_t * ff, uint16_t total_bytes) TU_ATTR_WEAK; -// Stall endpoint +// Stall endpoint, any queuing transfer should be removed from endpoint void dcd_edpt_stall (uint8_t rhport, uint8_t ep_addr); // clear stall, data toggle is also reset to DATA0 |
