Improved extended bandwidth function

This commit is contained in:
Sjef Verhoeven PE5PVB
2025-09-03 16:37:04 +02:00
parent 498476fc57
commit 49243a5fcf
6 changed files with 17 additions and 4 deletions
+4
View File
@@ -132,6 +132,10 @@ void devTEF_Radio_Set_ChannelEqualizer(bool eq) {
devTEF_Set_Cmd(TEF_FM, Cmd_Set_ChannelEqualizer, 5, eq);
}
void devTEF_Radio_Extend_BW(bool yesno) {
devTEF_Set_Cmd(TEF_FM, Cmd_Set_Bandwidth_Options, 5, (yesno ? 400 : 950));
}
void devTEF_Radio_Set_Stereo_Min(bool mode) {
if (mode) devTEF_Set_Cmd(TEF_FM, Cmd_Set_Stereo_Min, 7, 2); else devTEF_Set_Cmd(TEF_FM, Cmd_Set_Stereo_Min, 7, 0);
}