]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
fixed references to transmitter when using bandstack with an RTLSDR
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Thu, 26 Mar 2020 09:12:56 +0000 (09:12 +0000)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Thu, 26 Mar 2020 09:12:56 +0000 (09:12 +0000)
vfo.c

diff --git a/vfo.c b/vfo.c
index f7823ca4d436df56120e9824ea7ab667976ef607..88ddf3bc90d5755cfd857c412a01c9b11d81026b 100644 (file)
--- a/vfo.c
+++ b/vfo.c
@@ -347,7 +347,9 @@ void vfo_bandstack_changed(int b) {
       receiver_vfo_changed(receiver[id]);
       BAND *band=band_get_band(vfo[id].band);
       set_alex_rx_antenna(band->alexRxAntenna);
-      set_alex_tx_antenna(band->alexTxAntenna);
+      if(can_transmit) {
+        set_alex_tx_antenna(band->alexTxAntenna);
+      }
       set_alex_attenuation(band->alexAttenuation);
       receiver_vfo_changed(receiver[0]);
       break;
@@ -360,14 +362,14 @@ void vfo_bandstack_changed(int b) {
 
   if(can_transmit) {
     tx_set_mode(transmitter,get_tx_mode());
-  }
-  //
-  // I do not think the band can change within this function.
-  // But out of paranoia, I consider this possiblity here
-  //
-  calcDriveLevel();  // sends HighPrio packet if in new protocol
-  if (protocol == NEW_PROTOCOL) {
-    schedule_general();                // for PA disable
+    //
+    // I do not think the band can change within this function.
+    // But out of paranoia, I consider this possiblity here
+    //
+    calcDriveLevel();  // sends HighPrio packet if in new protocol
+    if (protocol == NEW_PROTOCOL) {
+      schedule_general();              // for PA disable
+    }
   }
   g_idle_add(ext_vfo_update,NULL);