From efb1a8b0b1e50838d66381c0a4f2b484bb4faa49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Thu, 26 Sep 2024 22:03:25 +0200 Subject: [PATCH] use the same cutoff as this->highFreq --- src/modules/LR11x0/LR11x0.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/LR11x0/LR11x0.h b/src/modules/LR11x0/LR11x0.h index b2eba6bc2..b9d27eef6 100644 --- a/src/modules/LR11x0/LR11x0.h +++ b/src/modules/LR11x0/LR11x0.h @@ -776,7 +776,7 @@ class LR11x0: public PhysicalLayer { \param syncWord 1-byte LoRa sync word. \param preambleLength LoRa preamble length in symbols \param tcxoVoltage TCXO reference voltage to be set. - \param high defaults to false for Sub-GHz band, true for frequencies above 1.8GHz + \param high defaults to false for Sub-GHz band, true for frequencies above 1GHz \returns \ref status_codes */ int16_t begin(float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool high = false); @@ -999,7 +999,7 @@ class LR11x0: public PhysicalLayer { /*! \brief Sets LoRa bandwidth. Allowed values are 62.5, 125.0, 250.0 and 500.0 kHz. (default, high = false) \param bw LoRa bandwidth to be set in kHz. - \param high if set to true, allowed bandwidth is 203.125, 406.25 and 812.5 kHz, frequency must be above 1.8GHz + \param high if set to true, allowed bandwidth is 203.125, 406.25 and 812.5 kHz, frequency must be above 1GHz \returns \ref status_codes */ int16_t setBandwidth(float bw, bool high = false);