From 12932db37c2df7cf318b4cc56c10cb3e8dd1c0fd Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Sat, 1 Oct 2022 19:17:35 +1000 Subject: [PATCH] Refinement to last checkin: only clear function latch without beep for PTT, not for open squelch. --- openrtx/src/ui/ui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openrtx/src/ui/ui.c b/openrtx/src/ui/ui.c index 28d39a17..0b708321 100644 --- a/openrtx/src/ui/ui.c +++ b/openrtx/src/ui/ui.c @@ -2072,7 +2072,8 @@ void ui_updateFSM(bool *sync_rtx) if (txOngoing || rtx_rxSquelchOpen()) { - functionLatchTimer=0; // cancel the latch timer without beeping. + if (txOngoing) + functionLatchTimer=0; // cancel the latch timer without beeping. _ui_exitStandby(now); return; }