exit NOAA mode back to MR mode instead of VFO mode

If Scan Ranges are enabled, you can't get to NOAA from VFO anyway
This commit is contained in:
Justin White
2024-10-07 13:58:43 -04:00
parent 21475ef9ba
commit f1ccc367c0

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]; gEeprom.ScreenChannel[Vfo] = gEeprom.NoaaChannel[gEeprom.TX_VFO];
} }
else { else {
gEeprom.ScreenChannel[Vfo] = gEeprom.FreqChannel[gEeprom.TX_VFO]; gEeprom.ScreenChannel[Vfo] = gEeprom.MrChannel[gEeprom.TX_VFO];
#ifdef ENABLE_VOICE #ifdef ENABLE_VOICE
gAnotherVoiceID = VOICE_ID_FREQUENCY_MODE; gAnotherVoiceID = VOICE_ID_CHANNEL_MODE;
#endif #endif
} }
gRequestSaveVFO = true; gRequestSaveVFO = true;