Searched refs:event_flags (Results 1 – 10 of 10) sorted by relevance
/hal_espressif-3.6.0/components/usb/test/usb_host/ |
D | test_usb_host_plugging.c | 52 uint32_t event_flags; variable 53 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); 64 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { 126 uint32_t event_flags; variable 127 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); 128 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { 132 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { 184 uint32_t event_flags; variable 185 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); 186 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { [all …]
|
D | test_usb_host_async.c | 74 uint32_t event_flags; variable 75 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); 76 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { 80 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { 149 uint32_t event_flags; variable 150 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); 151 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { 155 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { 296 uint32_t event_flags; variable 297 usb_host_lib_handle_events(0, &event_flags); [all …]
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/usb_host_lib/main/ |
D | usb_host_lib_main.c | 39 uint32_t event_flags; in host_lib_daemon_task() local 40 ESP_ERROR_CHECK(usb_host_lib_handle_events(portMAX_DELAY, &event_flags)); in host_lib_daemon_task() 41 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { in host_lib_daemon_task() 44 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { in host_lib_daemon_task()
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_host/main/ |
D | usb-cdc.c | 34 uint32_t event_flags; in usb_lib_task() local 35 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in usb_lib_task() 36 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { in usb_lib_task() 40 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { in usb_lib_task()
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/main/ |
D | msc_example_main.c | 100 uint32_t event_flags; in handle_usb_events() local 101 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in handle_usb_events() 103 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { in handle_usb_events() 108 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { in handle_usb_events()
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_bg96/main/ |
D | cdc_acm_host_bg96.cpp | 157 uint32_t event_flags; in usb_lib_task() local 158 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in usb_lib_task() 159 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { in usb_lib_task() 163 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { in usb_lib_task()
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/test/ |
D | test_msc.c | 114 uint32_t event_flags; in handle_usb_events() local 115 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in handle_usb_events() 117 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { in handle_usb_events() 124 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { in handle_usb_events()
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/ |
D | test_cdc_acm_host.c | 65 uint32_t event_flags; in usb_lib_task() local 66 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in usb_lib_task() 67 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { in usb_lib_task() 72 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) { in usb_lib_task()
|
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/ |
D | usb_host.rst | 133 uint32_t event_flags; 134 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); 135 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) { 138 if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) {
|
/hal_espressif-3.6.0/components/usb/ |
D | usb_host.c | 491 uint32_t event_flags = 0; in usb_host_lib_handle_events() local 523 event_flags = p_host_lib_obj->dynamic.lib_event_flags; in usb_host_lib_handle_events() 530 *event_flags_ret = event_flags; in usb_host_lib_handle_events()
|