Merge pull request #913 from Solarvortx/master

Small fix for using 62.5Khz bandwidth setting.
This commit is contained in:
Sacha Weatherstone
2021-11-02 17:29:34 +11:00
committed by GitHub

View File

@@ -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;