]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Unified treatment of RX gain and attenuation
authorc vw <dl1ycf@darc.de>
Tue, 1 Jun 2021 15:03:50 +0000 (17:03 +0200)
committerc vw <dl1ycf@darc.de>
Tue, 1 Jun 2021 15:03:50 +0000 (17:03 +0200)
meter.c
rx_panadapter.c

diff --git a/meter.c b/meter.c
index 937126623de065597d701d5adda4597c43321689..77e575146ff06f32fea689094ffe0568dbaa8998 100644 (file)
--- a/meter.c
+++ b/meter.c
@@ -194,16 +194,7 @@ if(analog_meter) {
   switch(meter_type) {
     case SMETER:
       {
-      if(have_rx_gain) {
-        level=value+rx_gain_calibration-adc[rx->adc].attenuation;
-      } else {
-        level=value+(double)adc[rx->adc].attenuation;
-      }
-#ifdef SOAPYSDR
-      if(protocol==SOAPYSDR_PROTOCOL) {
-       level-=adc[rx->id].gain;
-      }
-#endif
+      level=value + (double)rx_gain_calibration + (double)adc[rx->adc].attenuation - adc[rx->adc].gain;
       if (filter_board == CHARLY25) {
        // preamp/dither encodes the preamp level
         if (rx->preamp) level -= 18.0;
@@ -562,22 +553,12 @@ if(analog_meter) {
       // value is dBm
       text_location=10;
       offset=5.0;
-      if(have_rx_gain) {
-        level=value+rx_gain_calibration-adc[rx->adc].attenuation;
-      } else {
-        level=value+(double)adc[rx->adc].attenuation;
-      }
-#ifdef SOAPYSDR
-      if(protocol==SOAPYSDR_PROTOCOL) {
-       level-=adc[rx->id].gain;
-      }
-#endif
+      level=value + (double)rx_gain_calibration + (double)adc[rx->adc].attenuation - adc[rx->adc].gain;
       if (filter_board == CHARLY25) {
        // preamp/dither encodes the preamp level
         if (rx->preamp) level -= 18.0;
         if (rx->dither) level -= 18.0;
       }
-
       //
       // Assume that alex_attenuation is set correctly if we have an ALEX board
       //
index b2d80c5b3379795f3f0db53adb88ad6b4d99d0ee..ed2478790cfc17a9eee77bc2a794e7a6beef5f4e 100644 (file)
@@ -426,14 +426,22 @@ void rx_panadapter_update(RECEIVER *rx) {
   // agc
   if(rx->agc!=AGC_OFF) {
     cairo_set_line_width(cr, LINE_THICK);
-    double knee_y=rx->agc_thresh+(double)adc[rx->adc].attenuation;
+    double knee_y=rx->agc_thresh + (double)rx_gain_calibration + (double)adc[rx->adc].attenuation - adc[rx->adc].gain;
     if (filter_board == ALEX && rx->adc == 0) knee_y += (double)(10*rx->alex_attenuation);
+    if (filter_board == CHARLY25) {
+      if (rx->preamp) knee_y -= 18.0;
+      if (rx->dither) knee_y -= 18.0;
+    }
     knee_y = floor((rx->panadapter_high - knee_y)
                         * (double) display_height
                         / (rx->panadapter_high - rx->panadapter_low));
 
-    double hang_y=rx->agc_hang+(double)adc[rx->adc].attenuation;
+    double hang_y=rx->agc_hang + (double)rx_gain_calibration + (double)adc[rx->adc].attenuation - adc[rx->adc].gain;
     if (filter_board == ALEX && rx->adc == 0) hang_y += (double)(10*rx->alex_attenuation);
+    if (filter_board == CHARLY25) {
+      if (rx->preamp) hang_y -= 18.0;
+      if (rx->dither) hang_y -= 18.0;
+    }
     hang_y = floor((rx->panadapter_high - hang_y)
                         * (double) display_height
                         / (rx->panadapter_high - rx->panadapter_low));
@@ -495,43 +503,28 @@ void rx_panadapter_update(RECEIVER *rx) {
 
   samples[pan]=-200.0;
   samples[display_width-1+pan]=-200.0;
-  if(have_rx_gain) {
-    s1=(double)samples[pan]+rx_gain_calibration-adc[rx->adc].attenuation;
-  } else {
-    s1=(double)samples[pan]+(double)adc[rx->adc].attenuation;
-  }
+  //
+  // most HPSDR only have attenuation (no gain), while HermesLite-II and SOAPY use gain (no attenuation)
+  //
+  s1=(double)samples[pan] + (double)rx_gain_calibration + (double)adc[rx->adc].attenuation - adc[rx->adc].gain;
   cairo_move_to(cr, 0.0, s1);
   if (filter_board == ALEX && rx->adc == 0) s1 += (double)(10*rx->alex_attenuation);
   if (filter_board == CHARLY25) {
     if (rx->preamp) s1 -= 18.0;
     if (rx->dither) s1 -= 18.0;
   }
-#ifdef SOAPYSDR
-  if(protocol==SOAPYSDR_PROTOCOL) {
-    s1-=adc[rx->adc].gain;
-  }
-#endif
 
   s1 = floor((rx->panadapter_high - s1)
                         * (double) display_height
                         / (rx->panadapter_high - rx->panadapter_low));
   cairo_move_to(cr, 0.0, s1);
   for(i=1;i<display_width;i++) {
-    if(have_rx_gain) {
-      s2=(double)samples[i+pan]+rx_gain_calibration-adc[rx->adc].attenuation;
-    } else {
-      s2=(double)samples[i+pan]+(double)adc[rx->adc].attenuation;
-    }
+    s2=(double)samples[i+pan] + (double)rx_gain_calibration + (double)adc[rx->adc].attenuation - adc[rx->adc].gain;
     if (filter_board == ALEX && rx->adc == 0) s2 += (double)(10*rx->alex_attenuation);
     if (filter_board == CHARLY25) {
       if (rx->preamp) s2 -= 18.0;
       if (rx->dither) s2 -= 18.0;
     }
-#ifdef SOAPYSDR
-    if(protocol==SOAPYSDR_PROTOCOL) {
-      s2-=adc[rx->adc].gain;
-    }
-#endif
     s2 = floor((rx->panadapter_high - s2)
                             * (double) display_height
                             / (rx->panadapter_high - rx->panadapter_low));