Home
last modified time | relevance | path

Searched refs:ep_config (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/components/usb/
Dusbh.c747 esp_err_t usbh_ep_alloc(usb_device_handle_t dev_hdl, usbh_ep_config_t *ep_config, hcd_pipe_handle_t… in usbh_ep_alloc() argument
749 USBH_CHECK(dev_hdl != NULL && ep_config != NULL && pipe_hdl_ret != NULL, ESP_ERR_INVALID_ARG); in usbh_ep_alloc()
755 .callback = ep_config->pipe_cb, in usbh_ep_alloc()
756 .callback_arg = ep_config->pipe_cb_arg, in usbh_ep_alloc()
757 .context = ep_config->context, in usbh_ep_alloc()
758 .ep_desc = ep_config->ep_desc, in usbh_ep_alloc()
768 bool is_in = ep_config->ep_desc->bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK; in usbh_ep_alloc()
769 uint8_t addr = ep_config->ep_desc->bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_NUM_MASK; in usbh_ep_alloc()
Dusb_host.c925 usbh_ep_config_t ep_config = { in endpoint_alloc() local
932 ret = usbh_ep_alloc(dev_hdl, &ep_config, &pipe_hdl); in endpoint_alloc()
/hal_espressif-3.6.0/components/usb/private_include/
Dusbh.h286 esp_err_t usbh_ep_alloc(usb_device_handle_t dev_hdl, usbh_ep_config_t *ep_config, hcd_pipe_handle_t…