]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
- corrected TX panadapter frequency markers and band edges
authorc vw <dl1ycf@darc.de>
Thu, 27 Feb 2020 16:46:26 +0000 (17:46 +0100)
committerc vw <dl1ycf@darc.de>
Thu, 27 Feb 2020 16:46:26 +0000 (17:46 +0100)
- corrected analog RF output watt meter
- OC menu TX labels corrected
- put all ALC stuff in one column in the meter menu
- corrected HERMESlite rxgain setting in P1

hpsdrsim.c
meter.c
meter_menu.c
oc_menu.c
old_protocol.c
tx_panadapter.c

index c8dc5d1ed03e08a23bd5dfbe49d55877233608c0..f61a8863cfd54a8e0b61bd05d2d0c560ef64a262 100644 (file)
@@ -1056,17 +1056,10 @@ void process_ep2(uint8_t *frame)
             // Some firmware/emulators use bit6 to indicate a 6-bit format
             // for a combined attenuator/preamplifier with the AD9866 chip.
             // The value is between 0 and 60 and formally correspondes to
-            // to an RX gain of -12 to +48 dB. However the front-end hardware
-            // determines which is the correct "zero level", that is, the gain
-            // which corresponds to full-amplitude IQ samples for a 0 dBm input.
-            // Experimentally, we set this "zero level" to +13 dB that (that is,
-            // a RxGain value of 25). So the "attenuation" is (25 -G) where G
-            // is the RXgain value.
-            // NOTE: according to the AD9866 data sheet, this "calibration value"
-            //       should be 22 instead of 25, while a value of 31 is used
-            //       by the HermesLite firmware  when bit6 is not set.
-            //
-            chk_data(25 -(frame[4] & 0x3F) , rx_att[0], "RX1 HL ATT/GAIN");
+            // to an RX gain of -12 to +48 dB. However, we set here that
+             // a value of +16 (that is, 28 on the 0-60 scale) corresponds to
+             // "zero attenuation"
+            chk_data(40 -(frame[4] & 0x3F) , rx_att[0], "RX1 HL ATT/GAIN");
            } else {
              chk_data((frame[4] & 0x1F) >> 0, rx_att[0], "RX1 ATT");
              chk_data((frame[4] & 0x20) >> 5, rx1_attE, "RX1 ATT enable");
diff --git a/meter.c b/meter.c
index 01f365d19cb6a4607090a9886c60ad5f5b8c1b55..c08f973898a2263c510d742067cf0a4c321906ec 100644 (file)
--- a/meter.c
+++ b/meter.c
@@ -439,7 +439,7 @@ if(analog_meter) {
       max_count++;
 
       //angle=(max_level/2.0)+offset;
-      angle=(max_level*10.0*interval)+offset;
+      angle=(max_level*10.0/(double)interval)+offset;
       radians=angle*M_PI/180.0;
       cairo_arc(cr, cx, cy, radius+8, radians, radians);
       cairo_line_to(cr, cx, cy);
index bb98f6989ba63f070afce1200564c5682ce25d1b..393c7c6f50b86fdb4142d71a324725cfb5c2d7b5 100644 (file)
@@ -139,6 +139,7 @@ void meter_menu (GtkWidget *parent) {
   row++;
   col=0;
 
+  col++;
   GtkWidget *alc_gain=gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(alc_peak),"ALC Gain");
   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (alc_gain), alc==TXA_ALC_GAIN);
   gtk_widget_show(alc_gain);
index 6ae650d3c5dc42832b75fd922c8d302d1785b326..2d2a2dd89a7f4be04da11c2f00aadf2a49501a74 100644 (file)
--- a/oc_menu.c
+++ b/oc_menu.c
@@ -172,7 +172,8 @@ void oc_menu(GtkWidget *parent) {
     //gtk_widget_override_font(oc_rx_title, pango_font_description_from_string("Arial 18"));
     gtk_widget_show(oc_rx_title);
     gtk_grid_attach(GTK_GRID(grid),oc_rx_title,i,2,1,1);
-    GtkWidget *oc_tx_title=gtk_label_new(oc_id);
+    GtkWidget *oc_tx_title=gtk_label_new(NULL);
+    gtk_label_set_markup(GTK_LABEL(oc_tx_title), oc_id);
     //gtk_widget_override_font(oc_tx_title, pango_font_description_from_string("Arial 18"));
     gtk_widget_show(oc_tx_title);
     gtk_grid_attach(GTK_GRID(grid),oc_tx_title,i+7,2,1,1);
index 1ed2aae3d251cc379a4105fcdf06c60b0bac4176..44e16802dcd35f7f2e36f6f3a781fb5c1f14c726 100644 (file)
@@ -1395,12 +1395,10 @@ if(last_power!=power) {
         if (have_rx_gain) {
          //
          // HERMESlite has a RXgain value in the range 0-60 that
-         // is stored in gx_gain_slider. The firmware uses bit 6
-         // of C4 to determine this case. However RadioBerry seems
-         // to behave differently and stores bit5 of the gain in the
-         // dither bit (see above) and a 5-bit attenuation value here.
+         // is stored in rx_gain_slider. The firmware uses bit 6
+         // of C4 to determine this case.
          //
-          int rxgain = adc_attenuation[active_receiver->adc]+12; // -12..48 to 0..60
+          int rxgain = adc_attenuation[active_receiver->adc]+12; // -12..48 to 0..60
           if (rxgain <  0) rxgain=0;
           if (rxgain > 60) rxgain=60;
          // encode all 6 bits of RXgain in ATT value and set bit6
index 403deeaf9804093de2ebf148c1c6cd8b4d193239..fe2fa9f408153e388206bf42e35924bda028bb3c 100644 (file)
@@ -241,7 +241,7 @@ void tx_panadapter_update(TRANSMITTER *tx) {
   }
 
   // plot frequency markers
-  long long half=6000LL; //(long long)(tx->output_rate/2);
+  long long half= duplex ? 3000LL : 12000LL; //(long long)(tx->output_rate/2);
   long long frequency;
   if(vfo[txvfo].ctun) {
     frequency=vfo[txvfo].ctun_frequency;
@@ -262,7 +262,7 @@ void tx_panadapter_update(TRANSMITTER *tx) {
 #ifdef TX_FREQ_MARKERS
   cairo_text_extents_t extents;
   long long f;
-  long long divisor=50000;
+  long long divisor=2000;
   for(i=0;i<display_width;i++) {
     f = frequency - half + (long) (hz_per_pixel * i);
     if (f > 0) {