[SX123x] Added delay to halting while loops

pull/1144/head
jgromes 2024-06-29 18:33:25 +02:00
rodzic 87c1851dc4
commit 406197e667
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -44,7 +44,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while (true);
while (true) { delay(10); }
}
}

Wyświetl plik

@ -43,7 +43,7 @@ void setup() {
} else {
Serial.print(F("failed, code "));
Serial.println(state);
while (true);
while (true) { delay(10); }
}
}