From 30e86710442ef9c2121ecae2366c6d904a01ac64 Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Fri, 2 Sep 2022 21:23:53 +1000 Subject: [PATCH] If there is no GPS fix, do not announce lat, long, ... --- openrtx/src/core/voicePromptUtils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openrtx/src/core/voicePromptUtils.c b/openrtx/src/core/voicePromptUtils.c index 8491cfea..32b29e98 100644 --- a/openrtx/src/core/voicePromptUtils.c +++ b/openrtx/src/core/voicePromptUtils.c @@ -528,8 +528,8 @@ void vp_announceGPSInfo() { case 0: vp_queueStringTableEntry(¤tLanguage->noFix); - break; - + vp_play(); + return; case 1: vp_queueString("SPS", vpAnnounceCommonSymbols); break;