Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/usb/include/usb/
Dusb_types_ch9.h435 #define USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK 0x80 macro
460 …DESC_GET_EP_DIR(desc_ptr) (((desc_ptr)->bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK) ? 1…
/hal_espressif-3.4.0/components/usb/
Dusbh.c768 bool is_in = ep_config->ep_desc->bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK; in usbh_ep_alloc()
813 bool is_in = bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK; in usbh_ep_free()
848 bool is_in = bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK; in usbh_ep_get_context()
Dhcd.c2196 bool is_in = pipe->ep_char.bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK; in _buffer_fill()
2476 bool is_in = pipe->ep_char.bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK; in _buffer_parse()
Dusb_host.c1299 … transfer->bEndpointAddress & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK), ESP_ERR_INVALID_ARG); in usb_host_transfer_submit()
/hal_espressif-3.4.0/examples/peripherals/usb/host/msc/components/msc/src/
Dmsc_host.c510 return endpoint & USB_B_ENDPOINT_ADDRESS_EP_DIR_MASK ? true : false; in is_in_endpoint()