2025-02-10 12:36:53 +01:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2024-12-03 08:52:48 +01:00
|
|
|
#pragma once
|
|
|
|
#include "hal/usb_phy_types.h"
|
|
|
|
|
2025-02-10 12:36:53 +01:00
|
|
|
/**
|
|
|
|
* @brief Install USB PHY separately from the usb_host_install()
|
2024-12-03 08:52:48 +01:00
|
|
|
*
|
|
|
|
* @param[in] phy_target USB PHY target
|
2025-02-10 12:36:53 +01:00
|
|
|
*/
|
2024-12-03 08:52:48 +01:00
|
|
|
void test_setup_usb_phy(usb_phy_target_t phy_target);
|
2025-02-10 12:36:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Uninstall PHY
|
|
|
|
*/
|
|
|
|
void test_delete_usb_phy(void);
|