12345678910111213141516 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-11-23 flybreak first version
- */
- #include <board.h>
- void phy_reset(void)
- {
- /* The phy reset pin of this BSP circuit is connected to the chip reset pin, so no additional reset is required. */
- }
|