]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
fixed silly typo introduced when merging.
authorc vw <dl1ycf@darc.de>
Thu, 25 Nov 2021 17:41:20 +0000 (18:41 +0100)
committerc vw <dl1ycf@darc.de>
Thu, 25 Nov 2021 17:41:20 +0000 (18:41 +0100)
gpio.h
toolbar.c

diff --git a/gpio.h b/gpio.h
index 04598af4c63712dcd1ba2b8d25390826245bb452..c7e8929721c4a2439f98fb01ce2d93f4b1513d46 100644 (file)
--- a/gpio.h
+++ b/gpio.h
@@ -79,7 +79,7 @@ extern void gpio_save_state();
 extern void gpio_save_actions();
 extern int gpio_init();
 extern void gpio_close();
-extern void do_switch_action(enum ACTION action, enum ACTION_MODE mode)
+extern void do_switch_action();
 extern unsigned int millis(); // to allow debouncing in i2c.c 
 
 #ifdef LOCALCW
index 933f6038e4ef7497b579a8c5fe64bf035cb61849..467deabd64fa0bbf6cbd0e23e19bc345cb3b4ace 100644 (file)
--- a/toolbar.c
+++ b/toolbar.c
@@ -113,6 +113,23 @@ void update_toolbar_labels() {
   gtk_button_set_label(GTK_BUTTON(sim_function),ActionTable[toolbar_switches[7].switch_function].button_str);
 }
 
+void mox_update(int state) {
+//fprintf(stderr,"mox_update: state=%d\n",state);
+  if(getTune()==1) {
+    setTune(0);
+  }
+  if(state) {
+    if(canTransmit() || tx_out_of_band) {
+      setMox(state);
+    } else {
+      transmitter_set_out_of_band(transmitter);
+    }
+  } else {
+    setMox(state);
+  }
+  g_idle_add(ext_vfo_update,NULL);
+}
+
 void tune_update(int state) {
   if(getMox()==1) {
     setMox(0);