Changed FM modulation max freq

pull/42/head
erikkaashoek 3 years ago
parent 70ebdddedf
commit eade52d57d

@ -1092,8 +1092,8 @@ void set_modulation_frequency(int f)
{ {
if (50 <= f && f <= 10000) { if (50 <= f && f <= 10000) {
#ifdef TINYSA4 #ifdef TINYSA4
if (setting.modulation == MO_WFM && f > 1000) if (setting.modulation == MO_WFM && f > 2000)
f = 1000; f = 2000;
#endif #endif
setting.modulation_frequency = f; setting.modulation_frequency = f;
dirty = true; dirty = true;

@ -3321,8 +3321,8 @@ const menuitem_t menu_date_time[] = {
static const menuitem_t menu_config2[] = static const menuitem_t menu_config2[] =
{ {
{ MT_ADV_CALLBACK | MT_LOW, 0,"LO OUTPUT", menu_lo_output_acb},
{ MT_ADV_CALLBACK, 0, "PULSE\nHIGH", menu_settings_pulse_acb}, { MT_ADV_CALLBACK, 0, "PULSE\nHIGH", menu_settings_pulse_acb},
{ MT_ADV_CALLBACK | MT_LOW, 0,"LO OUTPUT", menu_lo_output_acb},
#ifdef __ULTRA__ #ifdef __ULTRA__
{ MT_ADV_CALLBACK, 0, "ENABLE\nULTRA", menu_ultra_acb}, { MT_ADV_CALLBACK, 0, "ENABLE\nULTRA", menu_ultra_acb},
#endif #endif

Loading…
Cancel
Save

Powered by TurnKey Linux.