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.
This commit is contained in:
geeksville 2020-04-30 21:13:37 -07:00
parent eccf6e3865
commit e070cf9ef4

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++;
} }
} }