kopia lustrzana https://github.com/jgromes/RadioLib
[Bell] Added delay to halting while loops
rodzic
6f1ec9f016
commit
74c5bb253c
|
@ -52,7 +52,7 @@ void setup() {
|
||||||
} else {
|
} else {
|
||||||
Serial.print(F("failed, code "));
|
Serial.print(F("failed, code "));
|
||||||
Serial.println(state);
|
Serial.println(state);
|
||||||
while(true);
|
while (true) { delay(10); }
|
||||||
}
|
}
|
||||||
|
|
||||||
// initialize Bell 202 modem
|
// initialize Bell 202 modem
|
||||||
|
@ -63,7 +63,7 @@ void setup() {
|
||||||
} else {
|
} else {
|
||||||
Serial.print(F("failed, code "));
|
Serial.print(F("failed, code "));
|
||||||
Serial.println(state);
|
Serial.println(state);
|
||||||
while(true);
|
while (true) { delay(10); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue