From 46bf0445fa9ef7aa7457c2ebe81d09042f8f3749 Mon Sep 17 00:00:00 2001 From: jgromes Date: Tue, 17 Oct 2023 20:14:26 +0200 Subject: [PATCH] [SX126x] Decrease startup wait to 10 ms (#850) --- src/modules/SX126x/SX126x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/SX126x/SX126x.cpp b/src/modules/SX126x/SX126x.cpp index 7f739cf8..a312a011 100644 --- a/src/modules/SX126x/SX126x.cpp +++ b/src/modules/SX126x/SX126x.cpp @@ -220,7 +220,7 @@ int16_t SX126x::reset(bool verify) { } // wait a bit to not spam the module - this->mod->hal->delay(100); + this->mod->hal->delay(10); } }