From d0c4e3d6fb3b03c1ee4c696dfd1f4ea15681216a Mon Sep 17 00:00:00 2001 From: jgromes Date: Tue, 12 Sep 2023 19:04:26 +0200 Subject: [PATCH] [SX126x] Skip printing symbol length --- src/modules/SX126x/SX126x.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/SX126x/SX126x.cpp b/src/modules/SX126x/SX126x.cpp index a4257510..dbf141cf 100644 --- a/src/modules/SX126x/SX126x.cpp +++ b/src/modules/SX126x/SX126x.cpp @@ -1855,7 +1855,6 @@ int16_t SX126x::setModulationParams(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t // calculate symbol length and enable low data rate optimization, if auto-configuration is enabled if(this->ldroAuto) { float symbolLength = (float)(uint32_t(1) << this->spreadingFactor) / (float)this->bandwidthKhz; - RADIOLIB_DEBUG_PRINTLN("Symbol length: %f ms", symbolLength); if(symbolLength >= 16.0) { this->ldrOptimize = RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_ON; } else {