From f1ccc367c080b06ab2863d28b6f3db7d03e2c3d0 Mon Sep 17 00:00:00 2001 From: Justin White Date: Mon, 7 Oct 2024 13:58:43 -0400 Subject: [PATCH] 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 --- app/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.c b/app/main.c index 5c5d8d4..328cb06 100644 --- a/app/main.c +++ b/app/main.c @@ -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;