[RTTY] Added delay to halting while loops

pull/1144/head
jgromes 2024-06-29 18:32:38 +02:00
rodzic d99dd952df
commit 3ee37e4de5
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -55,7 +55,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while(true);
while (true) { delay(10); }
}
// initialize RTTY client
@ -81,7 +81,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while(true);
while (true) { delay(10); }
}
/*

Wyświetl plik

@ -63,7 +63,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while(true);
while (true) { delay(10); }
}
// initialize RTTY client
@ -81,7 +81,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while(true);
while (true) { delay(10); }
}
/*