]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
small tidy-ups
authorc vw <dl1ycf@darc.de>
Tue, 21 Sep 2021 14:11:47 +0000 (16:11 +0200)
committerc vw <dl1ycf@darc.de>
Tue, 21 Sep 2021 14:11:47 +0000 (16:11 +0200)
actions.c
vfo_menu.c

index cc0e52deb3f621f59d83eebaa02c5dede5f9a7f6..708ef87b274e1662fcb93b57e234773bb4924083 100644 (file)
--- a/actions.c
+++ b/actions.c
@@ -300,11 +300,7 @@ int process_action(void *data) {
       }
       break;
     case ATTENUATION:
-      if(have_rx_gain) {
-        value=KnobOrWheel(a, adc[active_receiver->adc].attenuation, -12.0, 48.0, 1.0);
-      } else {
-        value=KnobOrWheel(a, adc[active_receiver->adc].attenuation,   0.0, 31.0, 1.0);
-      }
+      value=KnobOrWheel(a, adc[active_receiver->adc].attenuation,   0.0, 31.0, 1.0);
       set_attenuation_value(value);
       break;
     case B_TO_A:
@@ -1081,14 +1077,7 @@ int process_action(void *data) {
       g_idle_add(ext_vfo_update, NULL);
       break;
     case VOXLEVEL:
-      value=KnobOrWheel(a, vox_threshold, 0.0, 1.0, 0.01);
-      if(a->mode==ABSOLUTE) {
-       vox_threshold = 0.01 * a->val;
-      } else if(a->mode==RELATIVE) {
-        vox_threshold += a->val * 0.01;
-        if (vox_threshold > 1.0) vox_threshold=1.0;
-        if (vox_threshold < 0.0) vox_threshold=0.0;
-      }
+      vox_threshold=KnobOrWheel(a, vox_threshold, 0.0, 1.0, 0.01);
       break;
     case WATERFALL_HIGH:
       value=KnobOrWheel(a, active_receiver->waterfall_high, -100.0, 0.0, 1.0);
index e47db55f958fa113942fe2104934935e00acfd4a..284d574815e1ab6e5aa4a24151683aaab05e9e77 100644 (file)
@@ -188,10 +188,8 @@ static void rit_cb(GtkComboBox *widget,gpointer data) {
 
 static void vfo_cb(GtkComboBox *widget,gpointer data) {
   int i=gtk_combo_box_get_active(widget);
-  if (i >= 0 && i < STEPS) {
-    vfo_set_stepsize(steps[i]);
-    g_idle_add(ext_vfo_update,NULL);
-  }
+  vfo_set_step_from_index(i);
+  g_idle_add(ext_vfo_update,NULL);
 }
 
 #ifdef PURESIGNAL