summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrppicomidi <[email protected]>2022-11-23 13:12:31 -0800
committerrppicomidi <[email protected]>2022-11-23 13:12:31 -0800
commit9825fbe9ac69cea94942361ac47080b7f5a0a1cd (patch)
tree24e23c552f35f0d5dc4820084ed8e5935ddd2763 /src
parent081e4eecba3c91f08cdf96b0a090e7726cec3727 (diff)
Fix RP2040 Issue 1721
Diffstat (limited to 'src')
-rw-r--r--src/portable/raspberrypi/rp2040/rp2040_usb.c4
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)
{