mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
854127a57c
This commit updates the USB Host stack to use the USB PHY driver. The USB PHY and the OTG Controller should now both be setup/deleted using usb_new_phy() and usb_del_phy() respectively. - The hcd_install() now expects the USB PHY and OTG Contorller to be already setup before it is called - usb_host_install() now has an option to skip calling usb_del_phy() if the user wants to setup their own USB PHY (e.g., in the case of using and external PHY). - CDC-ACM and MSC examples/test updated to use internal PHY Closes https://github.com/espressif/esp-idf/issues/8061
27 lines
704 B
C
27 lines
704 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
/**
|
|
* @brief Initialize the internal USB PHY and USB Controller for USB Host testing
|
|
*/
|
|
void test_usb_init_phy(void);
|
|
|
|
/**
|
|
* @brief Deinitalize the internal USB PHY and USB Controller after USB Host testing
|
|
*/
|
|
void test_usb_deinit_phy(void);
|
|
|
|
/**
|
|
* @brief For the USB PHY into the connected or disconnected state
|
|
*
|
|
* @param connected For into connected state if true, disconnected if false
|
|
* @param delay_ticks Delay in ticks before forcing state
|
|
*/
|
|
void test_usb_set_phy_state(bool connected, TickType_t delay_ticks);
|