ui: fix voice prompts for CTCSS settings menu

Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
This commit is contained in:
Silvano Seva 2025-10-04 21:12:35 +02:00
parent 18cef67746
commit f742a081d3
2 changed files with 1 additions and 11 deletions

View File

@ -97,7 +97,7 @@ const stringsTable_t englishStrings =
.macroLatching = "Macro Latch",
.noGps = "No GPS",
.batteryIcon = "Battery Icon",
.CTCSSTone = "CTCSS Frequency",
.CTCSSTone = "CTCSS Tone",
.CTCSSEn = "CTCSS En.",
.Encode = "Encode",
.Decode = "Decode",

View File

@ -2414,11 +2414,6 @@ void ui_updateFSM(bool *sync_rtx)
state.channel.fm.txTone %= CTCSS_FREQ_NUM;
state.channel.fm.rxTone = state.channel.fm.txTone;
*sync_rtx = true;
vp_announceCTCSS(state.channel.fm.rxToneEn,
state.channel.fm.rxTone,
state.channel.fm.txToneEn,
state.channel.fm.txTone,
queueFlags);
break;
case CTCSS_Enabled:
if (msg.keys & KEY_DOWN || msg.keys & KNOB_LEFT)
@ -2432,11 +2427,6 @@ void ui_updateFSM(bool *sync_rtx)
}
*sync_rtx = true;
vp_announceCTCSS(state.channel.fm.rxToneEn,
state.channel.fm.rxTone,
state.channel.fm.txToneEn,
state.channel.fm.txTone,
queueFlags | vpqIncludeDescriptions);
break;
}
}