mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-03 11:19:58 +00:00
Small fix for using 62.5Khz bandwidth setting.
This commit is contained in:
parent
51646f28ec
commit
d5e4ceebcc
@ -307,6 +307,8 @@ void RadioInterface::applyModemConfig()
|
|||||||
|
|
||||||
if (bw == 31) // This parameter is not an integer
|
if (bw == 31) // This parameter is not an integer
|
||||||
bw = 31.25;
|
bw = 31.25;
|
||||||
|
if (bw == 62) // Fix for 62.5Khz bandwidth
|
||||||
|
bw = 62.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
power = channelSettings.tx_power;
|
power = channelSettings.tx_power;
|
||||||
|
Loading…
Reference in New Issue
Block a user