From 48219a59f48042dd01fbefa935f6f5ffc2940e34 Mon Sep 17 00:00:00 2001 From: Roman Leonov Date: Wed, 23 Apr 2025 15:49:26 +0800 Subject: [PATCH] fix(usb_host): Correctly initialize set pipe ep char --- components/usb/hcd_dwc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/usb/hcd_dwc.c b/components/usb/hcd_dwc.c index d0c93bd475..af7de4a3e3 100644 --- a/components/usb/hcd_dwc.c +++ b/components/usb/hcd_dwc.c @@ -1537,6 +1537,7 @@ static void pipe_set_ep_char(const hcd_pipe_config_t *pipe_config, usb_transfer_ ep_char->mps = USB_EP_DESC_GET_MPS(pipe_config->ep_desc); } ep_char->dev_addr = pipe_config->dev_addr; + ep_char->ls_via_fs_hub = 0; if (pipe_idx > 0) { // TODO: remove warning after IDF-15060 if (port_speed == USB_SPEED_FULL && pipe_config->dev_speed == USB_SPEED_LOW) {