Home
last modified time | relevance | path

Searched refs:usb_host_device_open (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-3.6.0/components/usb/test/usb_host/
Dtest_usb_host_async.c259 TEST_ASSERT_EQUAL(ESP_OK, usb_host_device_open(client0_hdl, dev_addr, &client0_dev_hdl));
260 TEST_ASSERT_EQUAL(ESP_OK, usb_host_device_open(client1_hdl, dev_addr, &client1_dev_hdl));
263 TEST_ASSERT_NOT_EQUAL(ESP_OK, usb_host_device_open(client0_hdl, 0, &client0_dev_hdl));
267 TEST_ASSERT_NOT_EQUAL(ESP_OK, usb_host_device_open(client0_hdl, dev_addr, &dummy_dev_hdl));
268 TEST_ASSERT_NOT_EQUAL(ESP_OK, usb_host_device_open(client1_hdl, dev_addr, &dummy_dev_hdl));
Dmsc_client_async_enum.c115 …TEST_ASSERT_EQUAL(ESP_OK, usb_host_device_open(msc_obj.client_hdl, msc_obj.dev_addr_to_open, &msc_… in msc_client_async_enum_task()
Dctrl_client_async_seq.c137 …TEST_ASSERT_EQUAL(ESP_OK, usb_host_device_open(ctrl_obj.client_hdl, ctrl_obj.dev_addr_to_open, &ct… in ctrl_client_async_seq_task()
Dmsc_client_async_seq.c173 …TEST_ASSERT_EQUAL(ESP_OK, usb_host_device_open(msc_obj.client_hdl, msc_obj.dev_addr_to_open, &msc_… in msc_client_async_seq_task()
Dmsc_client_async_dconn.c179 …TEST_ASSERT_EQUAL(ESP_OK, usb_host_device_open(msc_obj.client_hdl, msc_obj.dev_addr_to_open, &msc_… in msc_client_async_dconn_task()
/hal_espressif-3.6.0/components/usb/include/usb/
Dusb_host.h250 esp_err_t usb_host_device_open(usb_host_client_handle_t client_hdl, uint8_t dev_addr, usb_device_ha…
/hal_espressif-3.6.0/examples/peripherals/usb/host/usb_host_lib/main/
Dclass_driver.c59 …ESP_ERROR_CHECK(usb_host_device_open(driver_obj->client_hdl, driver_obj->dev_addr, &driver_obj->de… in action_open_dev()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/src/
Dmsc_host.c203 if ( usb_host_device_open(s_msc_driver->client_handle, dev_addr, &device) == ESP_OK) { in is_mass_storage_device()
358 …MSC_GOTO_ON_ERROR( usb_host_device_open(s_msc_driver->client_handle, device_address, &msc_device->… in msc_host_install_device()
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Dusb_host.rst287usb_host_device_open(class_driver_obj.client_hdl, class_driver_obj.dev_addr, &class_driver_obj.dev…
335 c. Open the device via :cpp:func:`usb_host_device_open`.
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
Dcdc_acm_host.c367 …if (usb_host_device_open(p_cdc_acm_obj->cdc_acm_client_hdl, dev_addr_list[i], &current_device) != … in cdc_acm_find_and_open_usb_device()
/hal_espressif-3.6.0/components/usb/
Dusb_host.c794 esp_err_t usb_host_device_open(usb_host_client_handle_t client_hdl, uint8_t dev_addr, usb_device_ha… in usb_host_device_open() function