From ab1fc824bb63c50d559df5a9290cd29f08af3e61 Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 1 Nov 2021 13:49:46 +0100 Subject: [PATCH] Delegate all step size list processing to vfo.c functions. --- actions.c | 12 ++++-------- ext.c | 20 ++++++-------------- ext.h | 1 - rigctl.c | 21 +++++++++------------ step_menu.c | 5 +++-- vfo.c | 23 ++++++++++++++++------- vfo.h | 4 ++-- vfo_menu.c | 6 +++--- 8 files changed, 43 insertions(+), 49 deletions(-) diff --git a/actions.c b/actions.c index 4ba5881..3b019f2 100644 --- a/actions.c +++ b/actions.c @@ -69,8 +69,8 @@ ACTION_TABLE ActionTable[] = { {BAND_902, "BAND 902", "902", MIDI_KEY}, {BAND_AIR, "BAND AIR", "AIR", MIDI_KEY}, {BAND_GEN, "BAND GEN", "GEN", MIDI_KEY}, - {BAND_MINUS, "BAND -", "BND+", MIDI_KEY | CONTROLLER_SWITCH}, - {BAND_PLUS, "BAND +", "BND-", MIDI_KEY | CONTROLLER_SWITCH}, + {BAND_MINUS, "BAND -", "BND-", MIDI_KEY | CONTROLLER_SWITCH}, + {BAND_PLUS, "BAND +", "BND+", MIDI_KEY | CONTROLLER_SWITCH}, {BAND_WWV, "BAND WWV", "WWV", MIDI_KEY}, {BANDSTACK_MINUS, "BANDSTACK -", "BSTK-", MIDI_KEY | CONTROLLER_SWITCH}, {BANDSTACK_PLUS, "BANDSTACK +", "BSTK+", MIDI_KEY | CONTROLLER_SWITCH}, @@ -1048,18 +1048,14 @@ int process_action(void *data) { case VFO_STEP_MINUS: if(a->mode==PRESSED) { i=vfo_get_stepindex(); - i--; - if(i<0) i=STEPS-1; - vfo_set_stepsize(steps[i]); + vfo_set_step_from_index(--i); g_idle_add(ext_vfo_update, NULL); } break; case VFO_STEP_PLUS: if(a->mode==PRESSED) { i=vfo_get_stepindex(); - i++; - if(i>=STEPS) i=0; - vfo_set_stepsize(steps[i]); + vfo_set_step_from_index(++i); g_idle_add(ext_vfo_update, NULL); } break; diff --git a/ext.c b/ext.c index 8cb611f..397234b 100644 --- a/ext.c +++ b/ext.c @@ -75,7 +75,6 @@ // - ctun_update(int id, int state) // set CTUN state of VFO #id // - set_split(int state) // Set split mode to state // - num_pad(int val) // enter VFO frequency -// - update_vfo_step(int direction) // cycle throught VFO step sizes // void set_frequency(int v,long long f) { @@ -189,18 +188,6 @@ void num_pad(int val) { vfo_update(); } -void update_vfo_step(int direction) { - int i = vfo_get_stepindex();; - - if (direction > 0) { - i++; - } else { - i--; - } - vfo_set_step_from_index(i); - vfo_update(); -} - // // Functions to be invoked through the GTK idle queue, // @@ -374,7 +361,12 @@ int ext_tx_set_ps(void *data) { int ext_update_vfo_step(void *data) { int direction=GPOINTER_TO_INT(data); - update_vfo_step(direction); + int i = vfo_get_stepindex(); + + direction > 0 ? i++ : i--; + + vfo_set_step_from_index(i); + g_idle_add(ext_vfo_update, NULL); return 0; } diff --git a/ext.h b/ext.h index 3809182..fee3b22 100644 --- a/ext.h +++ b/ext.h @@ -154,4 +154,3 @@ extern void ctun_update(int id,int state); extern void band_plus(int id); extern void band_minus(int id); extern void num_pad(int num); -extern void update_vfo_step(int direction); diff --git a/rigctl.c b/rigctl.c index 01f8031..76b00d2 100644 --- a/rigctl.c +++ b/rigctl.c @@ -804,6 +804,7 @@ gboolean parse_extended_cmd (char *command,CLIENT *client) { // set the step size int i=atoi(&command[4]) ; vfo_set_step_from_index(i); + vfo_update(); } else { } break; @@ -811,9 +812,8 @@ gboolean parse_extended_cmd (char *command,CLIENT *client) { // move VFO A down by selected step if(command[6]==';') { int step_index=atoi(&command[4]); - if(step_index>=0 && step_index=0 && step_index=0 && step_index=0 && step_index= STEPS) index=STEPS-1; + return steps[index]; +} + int vfo_get_stepindex() { // - // return index of current step size in steps[] array, - // or 1 if not found + // return index of current step size in steps[] array // int i; for(i=0;i= STEPS) i=1; + if (i >= STEPS) i=4; return i; } @@ -712,7 +721,7 @@ void vfo_set_step_from_index(int index) { vfo_set_stepsize(steps[index]); } -void vfo_set_stepsize(long long newstep) { +void vfo_set_stepsize(int newstep) { // // Set current VFO step size. // and store the value in mode_settings of the current mode diff --git a/vfo.h b/vfo.h index 82b124a..cc31f8a 100644 --- a/vfo.h +++ b/vfo.h @@ -78,13 +78,13 @@ typedef struct _set_frequency { } SET_FREQUENCY; #define STEPS 15 -extern int steps[]; extern char *step_labels[]; extern GtkWidget* vfo_init(int width,int height,GtkWidget *parent); extern int vfo_get_stepindex(); extern void vfo_set_step_from_index(int index); -extern void vfo_set_stepsize(long long newstep); +extern void vfo_set_stepsize(int newstep); +extern int vfo_get_step_from_index(int index); extern void vfo_step(int steps); extern void vfo_id_step(int id, int steps); extern void vfo_move(long long hz,int round); diff --git a/vfo_menu.c b/vfo_menu.c index 284d574..0508a48 100644 --- a/vfo_menu.c +++ b/vfo_menu.c @@ -187,8 +187,7 @@ static void rit_cb(GtkComboBox *widget,gpointer data) { } static void vfo_cb(GtkComboBox *widget,gpointer data) { - int i=gtk_combo_box_get_active(widget); - vfo_set_step_from_index(i); + vfo_set_step_from_index(gtk_combo_box_get_active(widget)); g_idle_add(ext_vfo_update,NULL); } @@ -290,9 +289,10 @@ void vfo_menu(GtkWidget *parent,int vfo) { gtk_grid_attach(GTK_GRID(grid),vfo_label,3,3,1,1); GtkWidget *vfo_b=gtk_combo_box_text_new(); + int index=vfo_get_stepindex(); for (i=0; i