Reduce PHY reset time to 20ms

This commit is contained in:
logicog
2025-10-21 17:47:38 +02:00
parent 726b421824
commit 03fb3fe6b4
+1 -1
View File
@@ -236,7 +236,7 @@ void phy_reset(uint8_t port) __banked
// Disable PHY
phy_write(port, PHY_MMD_CTRL, 0xa610, v | 0x0800);
delay(5);
delay(2);
// Re-enable PHY
phy_write(port, PHY_MMD_CTRL, 0xa610, v & 0xf7ff);
}