[Bell] Added delay to halting while loops

This commit is contained in:
jgromes 2024-06-29 18:31:07 +02:00
parent 6f1ec9f016
commit 74c5bb253c

View file

@ -52,7 +52,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while(true);
while (true) { delay(10); }
}
// initialize Bell 202 modem
@ -63,7 +63,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while(true);
while (true) { delay(10); }
}
}