]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Corrected "step update"
authorc vw <dl1ycf@darc.de>
Fri, 21 May 2021 18:00:18 +0000 (20:00 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 21 May 2021 18:00:18 +0000 (20:00 +0200)
ext.c

diff --git a/ext.c b/ext.c
index e0d4aab9b6734afeef7b9983df9791d3c78a2288..789d7444c76e1d476f431c692b5b7c36e62da452 100644 (file)
--- a/ext.c
+++ b/ext.c
@@ -190,27 +190,20 @@ void num_pad(int val) {
 }
 
 void update_vfo_step(int direction) {
-  int i=0;
-  while(steps[i]!=step && steps[i]!=0) {
-    i++;
+  int i;
+  for (i=0; i<STEPS; i++) {
+    if (steps[i] == step) break;
   }
+  if (i >= STEPS) i=0;
 
-  if(steps[i]!=0) {
-    // current step size is in slot #i.
-    if(direction>0) {
-      // move to next slot (if it exists)
-      i++;
-      if(steps[i]!=0) {
-        step=steps[i];
-      }
-    } else {
-      // move to previous slot (if it exists)
-      i--;
-      if(i>=0) {
-        step=steps[i];
-      }
-    }
+  if (direction > 0) {
+    i++;
+  } else {
+    i--;
   }
+  if (i >= STEPS) i=STEPS;
+  if (i < 0     ) i=0;
+
   vfo_update();
 }