Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/usb/
Dusbh.c62 …hcd_pipe_handle_t ep_out[EP_NUM_MAX - 1]; //OUT EP owner contexts. -1 to exclude the default end… member
272 if (dev_obj->mux_protected.ep_out[i] != NULL) { in handle_pipe_halt_and_flush()
273 ESP_ERROR_CHECK(hcd_pipe_command(dev_obj->mux_protected.ep_out[i], HCD_PIPE_CMD_HALT)); in handle_pipe_halt_and_flush()
274 ESP_ERROR_CHECK(hcd_pipe_command(dev_obj->mux_protected.ep_out[i], HCD_PIPE_CMD_FLUSH)); in handle_pipe_halt_and_flush()
786 } else if (dev_obj->mux_protected.ep_out[addr - 1] == NULL) { //Is an OUT EP in usbh_ep_alloc()
787 dev_obj->mux_protected.ep_out[addr - 1] = pipe_hdl; in usbh_ep_alloc()
830 if (dev_obj->mux_protected.ep_out[addr - 1] != NULL) { in usbh_ep_free()
831 pipe_hdl = dev_obj->mux_protected.ep_out[addr - 1]; in usbh_ep_free()
832 dev_obj->mux_protected.ep_out[addr - 1] = NULL; in usbh_ep_free()
866 pipe_hdl = dev_obj->mux_protected.ep_out[addr - 1]; in usbh_ep_get_context()