From: John Melton G0ORX Date: Fri, 12 Mar 2021 13:18:03 +0000 (+0000) Subject: Add VFOSTEP_PLUS and VFOSTEP_MINUS to switch functions X-Git-Url: https://git.rkrishnan.org/components/vdrive//%22%22.?a=commitdiff_plain;h=98419181d3881fcaa1986ff14175d74cb9e1bccf;p=pihpsdr.git Add VFOSTEP_PLUS and VFOSTEP_MINUS to switch functions --- diff --git a/actions.c b/actions.c index 2c819dd..9bf4ee3 100644 --- a/actions.c +++ b/actions.c @@ -126,6 +126,8 @@ char *sw_string[SWITCH_ACTIONS] = { "TUNE FULL", "TUNE MEM", "TWO TONE", + "VFOSTEP +", + "VFOSTEP -", "XIT", "XIT CL", "XIT -", @@ -183,6 +185,8 @@ char *sw_cap_string[SWITCH_ACTIONS] = { "TUN-F", "TUN-M", "2TONE", + "STEP+", + "STEP-", "XIT", "XIT CL", "XIT -", @@ -499,6 +503,7 @@ int encoder_action(void *data) { } int switch_action(void *data) { + int i; SWITCH_ACTION *a=(SWITCH_ACTION *)data; if(a->state==PRESSED) { switch(a->action) { @@ -572,6 +577,26 @@ int switch_action(void *data) { tx_set_twotone(transmitter,state); } break; + case VFOSTEP_PLUS: + for(i=0;i=STEPS) i=0; + i++; + if(i>=STEPS) i=0; + step=steps[i]; + g_idle_add(ext_vfo_update, NULL); + break; + case VFOSTEP_MINUS: + for(i=0;i=STEPS) i=0; + i--; + if(i<0) i=STEPS-1; + step=steps[i]; + g_idle_add(ext_vfo_update, NULL); + break; case NR: if(active_receiver->nr==0 && active_receiver->nr2==0) { active_receiver->nr=1; diff --git a/actions.h b/actions.h index c0c011a..b48c5b3 100644 --- a/actions.h +++ b/actions.h @@ -96,6 +96,8 @@ enum { TUNE_FULL, TUNE_MEMORY, TWO_TONE, + VFOSTEP_PLUS, + VFOSTEP_MINUS, XIT, XIT_CLEAR, XIT_MINUS, diff --git a/ext.c b/ext.c index 6ee09b2..d94efa2 100644 --- a/ext.c +++ b/ext.c @@ -264,10 +264,11 @@ int ext_tx_set_ps(void *data) { int ext_update_vfo_step(void *data) { int direction=GPOINTER_TO_INT(data); - int i=0; - while(steps[i]!=step && steps[i]!=0) { - i++; + int i; + for(i=0;i=STEPS) i=0; if(steps[i]!=0) { if(direction>0) { diff --git a/gpio.c b/gpio.c index 1509d1f..0e86587 100644 --- a/gpio.c +++ b/gpio.c @@ -683,21 +683,21 @@ void gpio_restore_state() { if(value) encoders[i].switch_address=atoi(value); } - if(controller==CONTROLLER1) { - for(int f=0;f=STEPS) s=0; + sprintf(temp_text,"Step %s",step_labels[s]); cairo_move_to(cr, 400, 15); cairo_set_source_rgb(cr, 1.0, 1.0, 0.0); @@ -1214,16 +1215,6 @@ fprintf(stderr,"vfo_update: no surface!\n"); } } -/* -static gboolean -vfo_step_select_cb (GtkWidget *widget, - gpointer data) -{ - step=steps[(int)data]; - g_idle_add(ext_vfo_update,NULL); -} -*/ - static gboolean vfo_press_event_cb (GtkWidget *widget, GdkEventButton *event, diff --git a/vfo.h b/vfo.h index f46d32f..41240c1 100644 --- a/vfo.h +++ b/vfo.h @@ -71,6 +71,7 @@ typedef struct _set_frequency { long long frequency; } SET_FREQUENCY; +#define STEPS 15 extern int steps[]; extern char *step_labels[];