[RTTY] Added delay to halting while loops

This commit is contained in:
jgromes 2024-06-29 18:32:38 +02:00
parent d99dd952df
commit 3ee37e4de5
2 changed files with 4 additions and 4 deletions

View file

@ -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); }
}
/*

View file

@ -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); }
}
/*