From 44c0a2b59e1521ce25f60a822c5f33ae8ce0e909 Mon Sep 17 00:00:00 2001 From: c vw Date: Fri, 21 May 2021 20:00:18 +0200 Subject: [PATCH] Corrected "step update" --- ext.c | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/ext.c b/ext.c index e0d4aab..789d744 100644 --- 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=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(); } -- 2.45.2