increase reset time

- compensates for old timeout in serial reading
This commit is contained in:
Nicu Hodos 2023-01-22 16:44:01 +01:00
parent ed755abb14
commit 41ad1b4348

View File

@ -93,7 +93,7 @@ void readCommand() {
char* cmd = serialReader.getBuffer();
if (strcmp("reset", cmd) == 0) {
Serial.println("resetting...");
delay(200);
delay(1200);
digitalWrite(RESET_PIN, LOW);
Serial.println("resetting failed");
}