From 6a56fe3d3a7e66dd4b55a91da3ebee6b1bea9ecb Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Wed, 7 Sep 2022 18:01:03 +1000 Subject: [PATCH] Fixed satellite count readout. --- openrtx/src/core/voicePromptUtils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrtx/src/core/voicePromptUtils.c b/openrtx/src/core/voicePromptUtils.c index 7b52acc0..0e49dc4a 100644 --- a/openrtx/src/core/voicePromptUtils.c +++ b/openrtx/src/core/voicePromptUtils.c @@ -623,7 +623,7 @@ void vp_announceGPSInfo() addSilenceIfNeeded(flags); vp_queuePrompt(PROMPT_SATELLITES); - vp_queueInteger(__builtin_popcount(state.gps_data.active_sats)); + vp_queueInteger(state.gps_data.satellites_in_view); vp_play(); }