No reason to wait 1s between probes (for a 4MHz spi bus). Change

to 10ms so probing for parts doesn't slow our boot so much.
pull/142/head
geeksville 2020-04-30 21:13:37 -07:00
rodzic eccf6e3865
commit e070cf9ef4
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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