From 1bcbefeb967bce393f85cc4378c39e2c748ae22f Mon Sep 17 00:00:00 2001 From: GullCode Date: Fri, 5 May 2023 17:01:08 +0200 Subject: [PATCH] fix skip consecutive match --- firmware/application/apps/ui_recon.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/firmware/application/apps/ui_recon.cpp b/firmware/application/apps/ui_recon.cpp index 112a7632..8b8db5b0 100644 --- a/firmware/application/apps/ui_recon.cpp +++ b/firmware/application/apps/ui_recon.cpp @@ -408,15 +408,16 @@ namespace ui { default: break; } + restart_recon = true ; } // send a pause message with the right freq if( has_looped && !_continuous ) { // signal pause to handle_retune - receiver_model.set_tuning_frequency( freq ); // Retune to actual freq message.freq = freq ; message.range = MSG_RECON_PAUSE ; EventDispatcher::send_message(message); + receiver_model.set_tuning_frequency( freq ); // Retune to actual freq } if( _stepper < 0 ) _stepper ++ ; if( _stepper > 0 ) _stepper -- ;