From e070cf9ef400c83464a0a90b9344b1dffd0708b6 Mon Sep 17 00:00:00 2001 From: geeksville Date: Thu, 30 Apr 2020 21:13:37 -0700 Subject: [PATCH] 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. --- src/modules/SX127x/SX127x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/SX127x/SX127x.cpp b/src/modules/SX127x/SX127x.cpp index 727cf2b1..84cf1eb6 100644 --- a/src/modules/SX127x/SX127x.cpp +++ b/src/modules/SX127x/SX127x.cpp @@ -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++; } }