]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Small corrections in actions.c
authorc vw <dl1ycf@darc.de>
Mon, 15 Nov 2021 13:51:37 +0000 (14:51 +0100)
committerc vw <dl1ycf@darc.de>
Mon, 15 Nov 2021 13:51:37 +0000 (14:51 +0100)
actions.c

index fa43a1d8955a1212a6a1bf89d5752d63e95113ff..359c8a1fdb9f6535ccf7255c726903b3587ee902 100644 (file)
--- a/actions.c
+++ b/actions.c
@@ -198,13 +198,14 @@ static int timeout_cb(gpointer data) {
   return TRUE;
 }
 
-
 static inline double KnobOrWheel(PROCESS_ACTION *a, double oldval, double minval, double maxval, double inc) {
   //
-  // Slider: set value
-  // Wheel increment/decrement the value (by "inc" per tick)
+  // Knob ("Potentiometer"):  set value
+  // Wheel("Rotary Encoder"): increment/decrement the value (by "inc" per tick)
   //
-  // In either case, the returned value is in the range minval...maxval
+  // In both cases, the returned value is
+  //  - in the range minval...maxval
+  //  - rounded to a multiple of inc
   //
   switch (a->mode) {
     case RELATIVE:
@@ -212,21 +213,20 @@ static inline double KnobOrWheel(PROCESS_ACTION *a, double oldval, double minval
       break;
     case ABSOLUTE:
       oldval = minval + a->val*(maxval-minval)*0.01;
-      //
-      // Round the new value to a multiple of inc
-      //
-      oldval=inc*round(oldval/inc);
       break;
     default:
       // do nothing
       break;
   }
+  //
+  // Round and check range
+  //
+  oldval=inc*round(oldval/inc);
   if (oldval > maxval) oldval=maxval;
   if (oldval < minval) oldval=minval;
   return oldval;
 }
 
-
 int process_action(void *data) {
   PROCESS_ACTION *a=(PROCESS_ACTION *)data;
   double value;
@@ -504,10 +504,10 @@ int process_action(void *data) {
     case COMPRESSION:
       if(can_transmit) {
         value=KnobOrWheel(a, transmitter->compressor_level, 0.0, 20.0, 1.0);
-       transmitter_set_compressor_level(transmitter,value);
+        transmitter_set_compressor_level(transmitter,value);
         transmitter_set_compressor(transmitter, value > 0.5);
+        g_idle_add(ext_vfo_update, NULL);
       }
-      g_idle_add(ext_vfo_update, NULL);
       break;
     case CTUN:
       if(a->mode==PRESSED) {
@@ -845,6 +845,7 @@ int process_action(void *data) {
       break;
     case PANADAPTER_STEP:
       value=KnobOrWheel(a, active_receiver->panadapter_step, 5.0, 30.0, 1.0);
+      active_receiver->panadapter_step=(int)value;
       break;
     case PREAMP:
     case PS: