Exit standby when the squelch is open

This commit is contained in:
Alessio Caiazza 2021-12-07 23:13:15 +01:00 committed by Silvano Seva
parent ade9c47f71
commit fefe2f6de0
1 changed files with 1 additions and 1 deletions

View File

@ -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;