phy_reset.c 371 B

12345678910111213141516
  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. #include <board.h>
  11. void phy_reset(void)
  12. {
  13. /* The phy reset pin of this BSP circuit is connected to the chip reset pin, so no additional reset is required. */
  14. }