]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Re-normalized TX panadapter for PS feedback signal
authorc vw <dl1ycf@darc.de>
Fri, 28 Feb 2020 09:59:13 +0000 (10:59 +0100)
committerc vw <dl1ycf@darc.de>
Fri, 28 Feb 2020 09:59:13 +0000 (10:59 +0100)
old_protocol.c
transmitter.c

index 44e16802dcd35f7f2e36f6f3a781fb5c1f14c726..82fc028b5feeb3d900ce1e1e36f13a2704866193 100644 (file)
@@ -1286,10 +1286,10 @@ static int last_power=0;
           }
         }
 
-if(last_power!=power) {
-  g_print("power=%d\n",power);
-  last_power=power;
-}
+//if(last_power!=power) {
+//  g_print("power=%d\n",power);
+//  last_power=power;
+//}
 
 
 
index f709b84acb15aaa8ca92d53cea223d6c08c30e3e..3444b95cf8d77884ca6f993a9a2f76888b744d01 100644 (file)
@@ -407,8 +407,32 @@ static gboolean update_display(gpointer data) {
       int start = (full-width) /2;      // Copy from start ... (end-1) 
       float *tfp=tx->pixel_samples;
       float *rfp=rx_feedback->pixel_samples+start;
-      // if full == width, then we just copy all samples
-      memcpy(tfp, rfp, width*sizeof(float));
+      int i;
+      //
+      // The TX panadapter shows a RELATIVE signal strength. A CW or single-tone signal at
+      // full drive appears at 0dBm, the two peaks of a full-drive two-tone signal appear
+      // at -6 dBm each. THIS DOES NOT DEPEND ON THE POSITION OF THE DRIVE LEVEL SLIDER.
+      // The strength of the feedback signal, however, depends on the drive, on the PA and
+      // on the attenuation effective in the feedback path.
+      // We try to normalize the feeback signal such that is looks like a "normal" TX
+      // panadapter if the feedback is optimal for PURESIGNAL (that is, if the attenuation
+      // is optimal). The correction depends on the protocol (different peak levels in the TX
+      // feedback channel, old=0.407, new=0.2899, difference is 3 dB).
+      switch (protocol) {
+        case ORIGINAL_PROTOCOL:
+          for (i=0; i<width; i++) {
+            *tfp++ =*rfp++ + 12.0;
+          }
+          break;
+        case NEW_PROTOCOL:
+          for (i=0; i<width; i++) {
+            *tfp++ =*rfp++ + 15.0;
+          }
+          break;
+        default:
+          memcpy(tfp, rfp, width*sizeof(float));
+          break;
+      }
       g_mutex_unlock(&rx_feedback->mutex);
     } else {
 #endif