diff options
| author | Ha Thach <[email protected]> | 2022-11-30 18:00:27 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-30 18:00:27 +0700 |
| commit | 2ae6a4d519cdb1d8df7a4c7b9a979b8ad3713e88 (patch) | |
| tree | 5ad3583da33a63d8a3ff902ecbc1120384c8a670 /src | |
| parent | ff267149588c922a34a3fd154af805ad0a776192 (diff) | |
| parent | 9825fbe9ac69cea94942361ac47080b7f5a0a1cd (diff) | |
Merge pull request #1755 from rppicomidi/fix_1721
Fix RP2040 Issue 1721
Diffstat (limited to 'src')
| -rw-r--r-- | src/portable/raspberrypi/rp2040/rp2040_usb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/portable/raspberrypi/rp2040/rp2040_usb.c b/src/portable/raspberrypi/rp2040/rp2040_usb.c index 25c013bd2..d7895175e 100644 --- a/src/portable/raspberrypi/rp2040/rp2040_usb.c +++ b/src/portable/raspberrypi/rp2040/rp2040_usb.c @@ -155,7 +155,9 @@ static void __tusb_irq_path_func(_hw_endpoint_start_next_buffer)(struct hw_endpo // For now: skip double buffered for Device mode, OUT endpoint since // host could send < 64 bytes and cause short packet on buffer0 // NOTE this could happen to Host mode IN endpoint - bool const force_single = !(usb_hw->main_ctrl & USB_MAIN_CTRL_HOST_NDEVICE_BITS) && !tu_edpt_dir(ep->ep_addr); + // Also, Host mode interrupt endpoint hardware is only single buffered + bool const force_single = (!(usb_hw->main_ctrl & USB_MAIN_CTRL_HOST_NDEVICE_BITS) && !tu_edpt_dir(ep->ep_addr)) || + ((usb_hw->main_ctrl & USB_MAIN_CTRL_HOST_NDEVICE_BITS) && tu_edpt_number(ep->ep_addr) != 0); if(ep->remaining_len && !force_single) { |
