From 84edb3b2a0d7d3118f1b752f1a74874b7534ee5f Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 15 Nov 2021 14:51:37 +0100 Subject: [PATCH] Small corrections in actions.c --- actions.c | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/actions.c b/actions.c index fa43a1d..359c8a1 100644 --- 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: -- 2.45.2