From fefe2f6de012f3cfb2533df6fb13ac0a37f3af30 Mon Sep 17 00:00:00 2001 From: Alessio Caiazza Date: Tue, 7 Dec 2021 23:13:15 +0100 Subject: [PATCH] Exit standby when the squelch is open --- openrtx/src/ui/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrtx/src/ui/ui.c b/openrtx/src/ui/ui.c index 9906be61..47b75587 100644 --- a/openrtx/src/ui/ui.c +++ b/openrtx/src/ui/ui.c @@ -1526,7 +1526,7 @@ void ui_updateFSM(event_t event, bool *sync_rtx) } else if(event.type == EVENT_STATUS) { - if (txOngoing) //TODO: check for open squelch + if (txOngoing || rtx_rxSquelchOpen()) { _ui_exitStandby(now); return;