From 9fd3701f46964f94c1467bb6a5374bc068d38a90 Mon Sep 17 00:00:00 2001 From: Krzysiek Egzmont Date: Thu, 19 Oct 2023 17:00:22 +0200 Subject: [PATCH] Don't activate RX VFO when crossband is active --- app/app.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/app.c b/app/app.c index 2f59fd5..7c440b9 100644 --- a/app/app.c +++ b/app/app.c @@ -535,7 +535,8 @@ void APP_StartListening(FUNCTION_Type_t Function, const bool reset_am_fix) gDualWatchCountdown_10ms = dual_watch_count_after_2_10ms; gScheduleDualWatch = false; - gRxVfoIsActive = true; + if(gEeprom.CROSS_BAND_RX_TX == CROSS_BAND_OFF) + gRxVfoIsActive = true; // let the user see DW is not active gDualWatchActive = false;