Home
last modified time | relevance | path

Searched refs:usb_host_install (Results 1 – 13 of 13) sorted by relevance

/hal_espressif-3.6.0/components/usb/test/usb_host/
Dtest_usb_host_plugging.c45 ESP_ERROR_CHECK(usb_host_install(&host_config));
106 ESP_ERROR_CHECK(usb_host_install(&host_config));
171 ESP_ERROR_CHECK(usb_host_install(&host_config));
Dtest_usb_host_async.c56 ESP_ERROR_CHECK(usb_host_install(&host_config));
120 ESP_ERROR_CHECK(usb_host_install(&host_config));
226 ESP_ERROR_CHECK(usb_host_install(&host_config));
/hal_espressif-3.6.0/examples/peripherals/usb/host/usb_host_lib/main/
Dusb_host_lib_main.c30 ESP_ERROR_CHECK(usb_host_install(&host_config)); in host_lib_daemon_task()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_host/main/
Dusb-cdc.c59 ESP_ERROR_CHECK(usb_host_install(&host_config)); in app_main()
/hal_espressif-3.6.0/components/usb/include/usb/
Dusb_host.h141 esp_err_t usb_host_install(const usb_host_config_t *config);
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/main/
Dmsc_example_main.c140 ESP_ERROR_CHECK( usb_host_install(&host_config) ); in app_main()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/
DREADME.md9 - First, usb host library has to be initialized by calling `usb_host_install`
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_bg96/main/
Dcdc_acm_host_bg96.cpp184 ESP_ERROR_CHECK(usb_host_install(&host_config)); in app_main()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
DREADME.md35 1. Install the USB Host Library via `usb_host_install()`
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/test/
Dtest_msc.c199 ESP_OK_ASSERT( usb_host_install(&host_config) ); in msc_setup()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/
Dtest_cdc_acm_host.c59 TEST_ASSERT_EQUAL(ESP_OK, usb_host_install(&host_config)); in usb_lib_task()
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Dusb_host.rst166 1. The Host Library is installed by calling :cpp:func:`usb_host_install`.
168 …- Where :cpp:func:`usb_host_install` is called (e.g., from the Daemon Task or another task) will d…
171 … This can be called elsewhere if necessary as long it is called after :cpp:func:`usb_host_install`.
/hal_espressif-3.6.0/components/usb/
Dusb_host.c360 esp_err_t usb_host_install(const usb_host_config_t *config) in usb_host_install() function