Merge pull request #271 from just6979/noaa_fix

NOAA mode fixes
This commit is contained in:
Armel FAUVEAU
2024-10-10 03:02:13 +02:00
committed by GitHub
4 changed files with 22 additions and 3 deletions

View File

@@ -210,9 +210,9 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
gEeprom.ScreenChannel[Vfo] = gEeprom.NoaaChannel[gEeprom.TX_VFO];
}
else {
gEeprom.ScreenChannel[Vfo] = gEeprom.FreqChannel[gEeprom.TX_VFO];
gEeprom.ScreenChannel[Vfo] = gEeprom.MrChannel[gEeprom.TX_VFO];
#ifdef ENABLE_VOICE
gAnotherVoiceID = VOICE_ID_FREQUENCY_MODE;
gAnotherVoiceID = VOICE_ID_CHANNEL_MODE;
#endif
}
gRequestSaveVFO = true;