From bec9ec02186b089c783c1bbf543d991e0254af4f Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Fri, 3 Jun 2022 22:22:08 +1000 Subject: [PATCH] Added call to ReleaseFunctionLatchIfNeeded to status event branch of fsm so that the function latch will be released when needed without having to wait for a key press. --- openrtx/src/ui/ui.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openrtx/src/ui/ui.c b/openrtx/src/ui/ui.c index e30e8262..0ad8305c 100644 --- a/openrtx/src/ui/ui.c +++ b/openrtx/src/ui/ui.c @@ -1835,6 +1835,8 @@ void ui_updateFSM(bool *sync_rtx) } else if(event.type == EVENT_STATUS) { + ReleaseFunctionLatchIfNeeded(); + if (txOngoing || rtx_rxSquelchOpen()) { _ui_exitStandby(now);