diff options
| author | Ha Thach <[email protected]> | 2025-11-20 14:17:13 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-20 14:17:13 +0700 |
| commit | 409c19364b3be723b26b013efa5ab3ec1d17435a (patch) | |
| tree | ec06dc2164823297b2be8eeb7276d054ed4cda62 /src/tusb.c | |
| parent | 3af1bec1a9161ee8dec29487831f7ac7ade9e189 (diff) | |
| parent | cea86617f75804ad9347c0b9686c102db555d4b7 (diff) | |
Merge pull request #3313 from hathach/copilot/fix-dcd-edpt-xfer-issue
Add is_isr parameter to dcd_edpt_xfer, dcd_edpt_xfer_fifo, usbd_edpt_xfer, and usbd_edpt_xfer_fifo functions
Diffstat (limited to 'src/tusb.c')
| -rw-r--r-- | src/tusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tusb.c b/src/tusb.c index 6fb5309ab..3852da76b 100644 --- a/src/tusb.c +++ b/src/tusb.c @@ -387,7 +387,7 @@ TU_ATTR_ALWAYS_INLINE static inline bool stream_xfer(uint8_t hwid, tu_edpt_strea #endif } else { #if CFG_TUD_ENABLED - return usbd_edpt_xfer(hwid, s->ep_addr, count ? s->ep_buf : NULL, count); + return usbd_edpt_xfer(hwid, s->ep_addr, count ? s->ep_buf : NULL, count, false); #endif } return false; |
