Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/usb/test/usb_host/
Dtest_usb_host_async.c75 usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
150 usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
249 usb_host_lib_handle_events(0, NULL);
283 usb_host_lib_handle_events(0, NULL);
297 usb_host_lib_handle_events(0, &event_flags);
Dtest_usb_host_plugging.c53 usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
127 usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
185 usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/
DREADME.md10 - USB Host Library events have to be handled by invoking `usb_host_lib_handle_events` periodically.
12 … order to save RAM, an already existing task can also be used to call `usb_host_lib_handle_events`.
/hal_espressif-3.6.0/examples/peripherals/usb/host/usb_host_lib/main/
Dusb_host_lib_main.c40 ESP_ERROR_CHECK(usb_host_lib_handle_events(portMAX_DELAY, &event_flags)); in host_lib_daemon_task()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/
Dtest_cdc_acm_host.c66 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in usb_lib_task()
80 usb_host_lib_handle_events(0, NULL); // Make sure there are now pending events in usb_lib_task()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_host/main/
Dusb-cdc.c35 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in usb_lib_task()
/hal_espressif-3.6.0/components/usb/include/usb/
Dusb_host.h169 esp_err_t usb_host_lib_handle_events(TickType_t timeout_ticks, uint32_t *event_flags_ret);
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/main/
Dmsc_example_main.c101 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in handle_usb_events()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_bg96/main/
Dcdc_acm_host_bg96.cpp158 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in usb_lib_task()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/test/
Dtest_msc.c115 usb_host_lib_handle_events(portMAX_DELAY, &event_flags); in handle_usb_events()
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Dusb_host.rst117usb_host_lib_handle_events` to handle library events. This function should be called repeatedly, t…
134 usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
191 …- The Daemon Task must wait for :cpp:func:`usb_host_lib_handle_events` to return the :c:macro:`USB…
/hal_espressif-3.6.0/components/usb/
Dusb_host.c488 esp_err_t usb_host_lib_handle_events(TickType_t timeout_ticks, uint32_t *event_flags_ret) in usb_host_lib_handle_events() function