Merge pull request #142 from meshtastic/probe

when probing for sx127xs don't wait so long between attempts.
This commit is contained in:
Jan Gromeš 2020-05-01 20:04:15 +02:00 committed by GitHub
commit 2b8a5e2ecf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -998,7 +998,7 @@ bool SX127x::findChip(uint8_t ver) {
RADIOLIB_DEBUG_PRINT(F(", expected 0x00")); RADIOLIB_DEBUG_PRINT(F(", expected 0x00"));
RADIOLIB_DEBUG_PRINTLN(ver, HEX); RADIOLIB_DEBUG_PRINTLN(ver, HEX);
#endif #endif
delay(1000); delay(10);
i++; i++;
} }
} }