SWITCH *toolbar_switches=switches_controller1[0];
-static gboolean rit_timer_cb(gpointer data) {
- int i=GPOINTER_TO_INT(data);
- vfo_rit(active_receiver->id,i);
- return TRUE;
-}
-
-static gboolean xit_timer_cb(gpointer data) {
- int i=GPOINTER_TO_INT(data);
- transmitter->xit+=(i*rit_increment);
- if(transmitter->xit>10000) transmitter->xit=10000;
- if(transmitter->xit<-10000) transmitter->xit=-10000;
- if(protocol==NEW_PROTOCOL) {
- schedule_high_priority();
- }
- g_idle_add(ext_vfo_update,NULL);
- return TRUE;
-}
-
void update_toolbar_labels() {
gtk_button_set_label(GTK_BUTTON(sim_mox),ActionTable[toolbar_switches[0].switch_function].button_str);
gtk_button_set_label(GTK_BUTTON(sim_s1),ActionTable[toolbar_switches[1].switch_function].button_str);
gtk_button_set_label(GTK_BUTTON(sim_function),ActionTable[toolbar_switches[7].switch_function].button_str);
}
+//
+// move mox_update and tune_update to actions.c on the long run
+// Note they are also called from RigCtl
+//
+
void mox_update(int state) {
//fprintf(stderr,"mox_update: state=%d\n",state);
+ if (!can_transmit) return;
if(getTune()==1) {
setTune(0);
}
}
void tune_update(int state) {
+ if (!can_transmit) return;
if(getMox()==1) {
setMox(0);
}