phy_reset.c 400 B

123456789101112131415161718192021
  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. * 2019-06-27 luhuadong first version
  9. */
  10. #include <board.h>
  11. void phy_reset(void)
  12. {
  13. /*
  14. * The PHY reset pin of NUCLEO-F767ZI is connected to the MCU reset pin,
  15. * so no additional reset is required.
  16. */
  17. return ;
  18. }