Fixed satellite count readout.

This commit is contained in:
vk7js 2022-09-07 18:01:03 +10:00 committed by Silvano Seva
parent a71a06c57a
commit 6a56fe3d3a
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}