2019-02-16 17:40:26 +08:00
|
|
|
/*
|
2021-03-14 15:33:55 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2019-02-16 17:40:26 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2019-02-18 10:21:54 +08:00
|
|
|
* 2019-02-16 jinsheng first version
|
2019-02-16 17:40:26 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
//#define DRV_DEBUG
|
|
|
|
#define LOG_TAG "drv.phy_reset"
|
|
|
|
#include <drv_log.h>
|
|
|
|
|
|
|
|
//PHY RESET PIN link system reset
|
|
|
|
|
|
|
|
/* phy reset */
|
|
|
|
void phy_reset(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|