diff options
| author | Ha Thach <[email protected]> | 2023-07-26 21:42:08 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-26 21:42:08 +0700 |
| commit | d9cc30291ff51fada4bf805dc9636b1aab63f20a (patch) | |
| tree | c6035c7df0b526ad513acf72202ae37ac878a464 /src/host | |
| parent | 9554283b03cb4af00119ccd5a38e539749b32d53 (diff) | |
| parent | 10575c1b380136ce9381393c33e982cea7ef4731 (diff) | |
Merge pull request #2182 from hathach/correct-hcd_edpt_clear_stall-API
correct hcd_edpt_clear_stall() API signature
Diffstat (limited to 'src/host')
| -rw-r--r-- | src/host/hcd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/hcd.h b/src/host/hcd.h index 50f1dcdcc..d77dd6e2f 100644 --- a/src/host/hcd.h +++ b/src/host/hcd.h @@ -179,7 +179,7 @@ bool hcd_edpt_abort_xfer(uint8_t rhport, uint8_t dev_addr, uint8_t ep_addr); bool hcd_setup_send(uint8_t rhport, uint8_t dev_addr, uint8_t const setup_packet[8]); // clear stall, data toggle is also reset to DATA0 -bool hcd_edpt_clear_stall(uint8_t daddr, uint8_t ep_addr); +bool hcd_edpt_clear_stall(uint8_t rhport, uint8_t dev_addr, uint8_t ep_addr); //--------------------------------------------------------------------+ // USBH implemented API |
