17 lines
371 B
C
17 lines
371 B
C
/*
|
|
* Copyright (c) 2006-2018, 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. */
|
|
}
|