]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Implement "rounding" for ABSOLUTE changes
authorDL1YCF <dl1ycf@darc.de>
Sun, 19 Sep 2021 21:32:48 +0000 (23:32 +0200)
committerDL1YCF <dl1ycf@darc.de>
Sun, 19 Sep 2021 21:32:48 +0000 (23:32 +0200)
actions.c

index c4b7afc96541841a3b93b480eb21227637887bc6..613b2e02ac3e688c14184d8e827e648c61026ccc 100644 (file)
--- a/actions.c
+++ b/actions.c
@@ -211,6 +211,10 @@ 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
@@ -842,8 +846,6 @@ int process_action(void *data) {
       break;
     case PANADAPTER_STEP:
       value=KnobOrWheel(a, active_receiver->panadapter_step, 5.0, 30.0, 1.0);
-      // restrict to multiples of 5
-      active_receiver->panadapter_step=(int)(value*0.2)+5;
       break;
     case PREAMP:
     case PS: