Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/usb/test/usb_host/
Dtest_usb_host_plugging.c52 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 …]
Dtest_usb_host_async.c74 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/
Dusb_host_lib_main.c39 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/
Dusb-cdc.c34 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/
Dmsc_example_main.c100 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/
Dcdc_acm_host_bg96.cpp157 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/
Dtest_msc.c114 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/
Dtest_cdc_acm_host.c65 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/
Dusb_host.rst133 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/
Dusb_host.c491 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()