Merge pull request #1327 from meshtastic/serialconsole

SerialDebug NRF
This commit is contained in:
Thomas Göttgens 2022-03-26 11:29:46 +01:00 committed by GitHub
commit 9bece843c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ SerialConsole::SerialConsole() : StreamAPI(&Port), RedirectablePrint(&Port)
#ifdef NRF52_SERIES
time_t timeout = millis();
while (!Port) {
if ((millis() - timeout) < 2000) {
if ((millis() - timeout) < 5000) {
delay(100);
} else {
break;