Home
last modified time | relevance | path

Searched refs:phy_hdl (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/usb/test/common/
Dtest_usb_common.c15 static usb_phy_handle_t phy_hdl = NULL; variable
27 ESP_ERROR_CHECK(usb_new_phy(&phy_config, &phy_hdl)); in test_usb_init_phy()
33 ESP_ERROR_CHECK(usb_del_phy(phy_hdl)); in test_usb_deinit_phy()
34 phy_hdl = NULL; in test_usb_deinit_phy()
43 …ESP_ERROR_CHECK(usb_phy_action(phy_hdl, (connected) ? USB_PHY_ACTION_HOST_ALLOW_CONN : USB_PHY_ACT… in test_usb_set_phy_state()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/test/
Dtest_msc.c49 static usb_phy_handle_t phy_hdl = NULL; variable
53 TEST_ASSERT_NOT_EQUAL(NULL, phy_hdl); in force_conn_state()
58 …ESP_ERROR_CHECK(usb_phy_action(phy_hdl, (connected) ? USB_PHY_ACTION_HOST_ALLOW_CONN : USB_PHY_ACT… in force_conn_state()
194 TEST_ASSERT_EQUAL(ESP_OK, usb_new_phy(&phy_config, &phy_hdl)); in msc_setup()
235 TEST_ASSERT_EQUAL(ESP_OK, usb_del_phy(phy_hdl)); in msc_teardown()
236 phy_hdl = NULL; in msc_teardown()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/
Dtest_cdc_acm_host.c31 static usb_phy_handle_t phy_hdl = NULL; variable
35 TEST_ASSERT_NOT_EQUAL(NULL, phy_hdl); in force_conn_state()
40 …ESP_ERROR_CHECK(usb_phy_action(phy_hdl, (connected) ? USB_PHY_ACTION_HOST_ALLOW_CONN : USB_PHY_ACT… in force_conn_state()
53 TEST_ASSERT_EQUAL(ESP_OK, usb_new_phy(&phy_config, &phy_hdl)); in usb_lib_task()
83 TEST_ASSERT_EQUAL(ESP_OK, usb_del_phy(phy_hdl)); in usb_lib_task()
84 phy_hdl = NULL; in usb_lib_task()
/hal_espressif-3.6.0/components/tinyusb/additions/src/
Dtinyusb.c27 static usb_phy_handle_t phy_hdl; variable
54 ESP_RETURN_ON_ERROR(usb_new_phy(&phy_conf, &phy_hdl), TAG, "Install USB PHY failed"); in tinyusb_driver_install()