diff --git a/sa_core.c b/sa_core.c index c6e8b07..ed520c7 100644 --- a/sa_core.c +++ b/sa_core.c @@ -1092,8 +1092,8 @@ void set_modulation_frequency(int f) { if (50 <= f && f <= 10000) { #ifdef TINYSA4 - if (setting.modulation == MO_WFM && f > 1000) - f = 1000; + if (setting.modulation == MO_WFM && f > 2000) + f = 2000; #endif setting.modulation_frequency = f; dirty = true; diff --git a/ui_sa.c b/ui_sa.c index 3a3e254..2bb652b 100644 --- a/ui_sa.c +++ b/ui_sa.c @@ -3321,8 +3321,8 @@ const menuitem_t menu_date_time[] = { 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 | MT_LOW, 0,"LO OUTPUT", menu_lo_output_acb}, #ifdef __ULTRA__ { MT_ADV_CALLBACK, 0, "ENABLE\nULTRA", menu_ultra_acb}, #endif