diff --git a/openrtx/src/core/voicePromptUtils.c b/openrtx/src/core/voicePromptUtils.c index 4cad125c..93ca296a 100644 --- a/openrtx/src/core/voicePromptUtils.c +++ b/openrtx/src/core/voicePromptUtils.c @@ -148,6 +148,13 @@ VoicePromptQueueFlags_T flags) announceFrequencies(channel->rx_frequency , channel->tx_frequency, localFlags); announceRadioMode(channel->mode, localFlags); + if ((channel->mode == OPMODE_FM) && (channel->fm.rxToneEn || channel->fm.txToneEn)) + { + announceCTCSS(channel->fm.rxToneEn, channel->fm.rxTone, +channel->fm.txToneEn, channel->fm.txTone, +localFlags); + } + vpPlayIfNeeded(flags); }