Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/usb/
Dusb_helpers.c119 if (index >= intf_desc->bNumEndpoints) { in usb_parse_endpoint_descriptor_by_index()
155 for (int index = 0; index < intf_desc->bNumEndpoints; index++) { in usb_parse_endpoint_descriptor_by_address()
215 printf("\tbNumEndpoints %d\n", intf_desc->bNumEndpoints); in usbh_print_intf_desc()
Dusb_host.c963 …ps_calloc(1, sizeof(interface_t) + (sizeof(endpoint_t *) * intf_desc->bNumEndpoints), MALLOC_CAP_D… in interface_alloc()
978 for (int i = 0; i < intf_obj->constant.intf_desc->bNumEndpoints; i++) { in interface_free()
1002 for (int i = 0; i < intf_desc->bNumEndpoints; i++) { in interface_claim()
1022 for (int i = 0; i < intf_desc->bNumEndpoints; i++) { in interface_claim()
1032 for (int i = 0; i < intf_desc->bNumEndpoints; i++) { in interface_claim()
1061 for (int i = 0; i < intf_obj->constant.intf_desc->bNumEndpoints; i++) { in interface_release()
1075 for (int i = 0; i < intf_obj->constant.intf_desc->bNumEndpoints; i++) { in interface_release()
1084 for (int i = 0; i < intf_obj->constant.intf_desc->bNumEndpoints; i++) { in interface_release()
/hal_espressif-3.6.0/examples/peripherals/usb/host/usb_host_lib/
DREADME.md102 bNumEndpoints 1
117 bNumEndpoints 2
139 bNumEndpoints 2
/hal_espressif-3.6.0/components/esp_rom/include/esp32s3/rom/usb/
Dusb_common.h191 uint8_t bNumEndpoints; member
/hal_espressif-3.6.0/components/esp_rom/include/esp32s2/rom/usb/
Dusb_common.h191 uint8_t bNumEndpoints; member
/hal_espressif-3.6.0/components/usb/include/usb/
Dusb_types_ch9.h396 …uint8_t bNumEndpoints; /**< Number of endpoints used by this interface (excluding end… member
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
Dcdc_acm_host.c731 assert(cdc_dev->notif.intf_desc->bNumEndpoints == 1); in cdc_acm_host_open()
733 assert(cdc_dev->data.intf_desc->bNumEndpoints == 2); in cdc_acm_host_open()
782 if (cdc_dev->data.intf_desc->bNumEndpoints == 3) { in cdc_acm_host_open_vendor_specific()