[Bell] Added delay to halting while loops
This commit is contained in:
parent
6f1ec9f016
commit
74c5bb253c
1 changed files with 2 additions and 2 deletions
|
@ -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); }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue