1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2018-11-23     flybreak     first version
9  */
10 
11 #include <board.h>
12 
phy_reset(void)13 void phy_reset(void)
14 {
15     /* The phy reset pin of this BSP circuit is connected to the chip reset pin, so no additional reset is required. */
16 }
17