Fixed offset for step setting.

This commit is contained in:
Dual Tachyon 2023-08-27 22:31:19 +01:00
parent 539733aa9c
commit 9ceabe1c0c

View File

@ -214,7 +214,7 @@ void RADIO_ConfigureChannel(uint8_t VFO, uint32_t Arg)
gEeprom.VfoInfo[VFO].FREQUENCY_DEVIATION_SETTING = Tmp;
gEeprom.VfoInfo[VFO].AM_CHANNEL_MODE = !!(Data[3] & 0x10);
Tmp = Data[4];
Tmp = Data[6];
if (Tmp > 6) {
Tmp = 5;
}