From d5e4ceebcc461cea73390f705036501f9fb13d51 Mon Sep 17 00:00:00 2001 From: Solanaceae <93513823+Solarvortx@users.noreply.github.com> Date: Mon, 1 Nov 2021 02:31:53 -0700 Subject: [PATCH] Small fix for using 62.5Khz bandwidth setting. --- src/mesh/RadioInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesh/RadioInterface.cpp b/src/mesh/RadioInterface.cpp index cf86ae01..5cf88b58 100644 --- a/src/mesh/RadioInterface.cpp +++ b/src/mesh/RadioInterface.cpp @@ -307,6 +307,8 @@ void RadioInterface::applyModemConfig() if (bw == 31) // This parameter is not an integer bw = 31.25; + if (bw == 62) // Fix for 62.5Khz bandwidth + bw = 62.5; } power = channelSettings.tx_power;