]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
reviewed conditions for "immediate antenna switching"
authorc vw <dl1ycf@darc.de>
Wed, 13 May 2020 14:04:43 +0000 (16:04 +0200)
committerc vw <dl1ycf@darc.de>
Wed, 13 May 2020 14:04:43 +0000 (16:04 +0200)
ant_menu.c

index 97139957267a767424f0cdf7e8b7fc2787924477..07bbd4963c73bb794e5cd4c2315f21bfd170c381 100644 (file)
@@ -28,6 +28,7 @@
 #include "ant_menu.h"
 #include "band.h"
 #include "radio.h"
+#include "vfo.h"
 #include "new_protocol.h"
 #ifdef SOAPYSDR
 #include "soapy_protocol.h"
@@ -65,7 +66,10 @@ static void rx_ant_cb(GtkToggleButton *widget, gpointer data) {
     int ant=(GPOINTER_TO_UINT(data))&0xF;
     BAND *band=band_get_band(b);
     band->alexRxAntenna=ant;
-    if(active_receiver->id==0) {
+    //
+    // Immediate switching if the VFO controlling the active receiver is on band b
+    //
+    if(vfo[active_receiver->id].band == b) {
       set_alex_rx_antenna(ant);
     }
   }
@@ -101,7 +105,10 @@ static void tx_ant_cb(GtkToggleButton *widget, gpointer data) {
     int ant=(GPOINTER_TO_UINT(data))&0xF;
     BAND *band=band_get_band(b);
     band->alexTxAntenna=ant;
-    if(active_receiver->id==0) {
+    //
+    // Switch immediately if the VFO controlling the TX is on that band
+    //
+    if (vfo[get_tx_vfo()].band == b) {
       set_alex_tx_antenna(ant);
     }
   }