Extracted announceM17Info logic to its own function.

This commit is contained in:
vk7js 2022-05-19 15:36:59 +10:00 committed by Silvano Seva
parent 339131a5b7
commit c3667313ba
2 changed files with 21 additions and 9 deletions

View File

@ -65,6 +65,8 @@ void announceContactWithIndex(uint16_t index, VoicePromptQueueFlags_T flags);
void announceTimeslot(uint8_t timeslot, VoicePromptQueueFlags_T flags);
void announceColorCode(uint8_t rxColorCode, uint8_t txColorCode, VoicePromptQueueFlags_T flags);
void announceBank(uint16_t bank, VoicePromptQueueFlags_T flags);
void announceM17Info(channel_t* channel, VoicePromptQueueFlags_T flags);
VoicePromptQueueFlags_T GetQueueFlagsForVoiceLevel();
#endif //VOICE_PROMPT_UTILS_H_INCLUDED

View File

@ -203,14 +203,7 @@ VoicePromptQueueFlags_T flags)
}
else if (channel->mode == OPMODE_M17)
{
if (state.m17_data.dst_addr[0])
{
if (localFlags & vpqIncludeDescriptions)
vpQueuePrompt(PROMPT_DEST_ID);
vpQueueString(state.m17_data.dst_addr, vpAnnounceCommonSymbols);
}
else if (channel->m17.contact_index)
announceContactWithIndex(channel->m17.contact_index, localFlags);
announceM17Info(channel, localFlags);
}
else if (channel->mode == OPMODE_DMR)
{
@ -433,7 +426,24 @@ void announceBank(uint16_t bank, VoicePromptQueueFlags_T flags)
vpQueueString(bank_hdr.name, vpAnnounceCommonSymbols);
}
else
vpQueueStringTableEntry(currentLanguage->allChannels);
vpQueueStringTableEntry(&currentLanguage->allChannels);
vpPlayIfNeeded(flags);
}
void announceM17Info(channel_t* channel, VoicePromptQueueFlags_T flags)
{
if (!channel) return;
vpInitIfNeeded(flags);
if (state.m17_data.dst_addr[0])
{
if (flags & vpqIncludeDescriptions)
vpQueuePrompt(PROMPT_DEST_ID);
vpQueueString(state.m17_data.dst_addr, vpAnnounceCommonSymbols);
}
else if (channel->m17.contact_index)
announceContactWithIndex(channel->m17.contact_index, flags);
vpPlayIfNeeded(flags);
}