minor refactoring of network code

This commit is contained in:
technyon
2023-02-18 19:14:38 +01:00
parent 9e92ea8cb3
commit d0fbaefd77
7 changed files with 18 additions and 13 deletions

View File

@@ -143,11 +143,11 @@ void W5500Device::resetDevice()
Log->println(F("Resetting network hardware."));
pinMode(_resetPin, OUTPUT);
digitalWrite(_resetPin, HIGH);
delay(250);
delay(50);
digitalWrite(_resetPin, LOW);
delay(50);
digitalWrite(_resetPin, HIGH);
delay(1500);
delay(50);
}