]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Implemented "TX fifo underrun/overrun" indication on TX panadapter
authorc vw <dl1ycf@darc.de>
Wed, 24 Feb 2021 18:06:34 +0000 (19:06 +0100)
committerc vw <dl1ycf@darc.de>
Wed, 24 Feb 2021 18:06:34 +0000 (19:06 +0100)
for HermesLite-II.

old_protocol.c
radio.c
radio.h
tx_panadapter.c

index af01f7fa0deca30691cf66ed98e9beb097826724..47cb75719d450beedd99c7071559d23cb30810ac 100644 (file)
@@ -142,6 +142,7 @@ static long ep4_sequence;
 
 static uint32_t last_seq_num=-0xffffffff;
 static int suppress_ozy_packet = 0;
+static int tx_fifo_flag = 0;
 
 static int current_rx=0;
 
@@ -1111,12 +1112,29 @@ static void process_control_bytes() {
       // As a result, we set the "TX latency" to 40 msec (see below).
       //
       //
-      //if (device == DEVICE_HERMES_LITE2 && isTransmitting()) {
-      //   fprintf(stderr,"TX FIFO: %d", control_in[3] & 0x7F);
-      //   if ((control_in[3] & 0xC0) == 0xC0) fprintf(stderr," OVER ");
-      //   if ((control_in[3] & 0xC0) == 0x80) fprintf(stderr," UNDER ");
-      //   fprintf(stderr,"\n");
-      //}
+      // Note after an RX/TX transition, "underflow" is reported
+      // until the TX fifo begins to fill, so we ignore underflows
+      // until the first packet reporting "no underflow" after each
+      // RX/TX transition.
+      //
+      if (device == DEVICE_HERMES_LITE2) {
+           if (!isTransmitting()) {
+              // during RX: set flag to zero
+              tx_fifo_flag=0;
+           } else {
+             // after RX/TX transition: ignore underflow condition
+             // until it first vanishes. tx_fifo_flag becomes "true"
+             // as soon as a "no underflow" condition is seen.
+             //
+             //fprintf(stderr,"TX FIFO: %d", control_in[3] & 0x7F);
+             //if ((control_in[3] & 0xC0) == 0xC0) fprintf(stderr," OVER ");
+             //if ((control_in[3] & 0xC0) == 0x80) fprintf(stderr," UNDER ");
+             //fprintf(stderr,"\n");
+             if ((control_in[3] & 0xC0) != 0x80) tx_fifo_flag=1;
+             if ((control_in[3] & 0xC0) == 0x80 && tx_fifo_flag) tx_fifo_underrun=1;
+             if ((control_in[3] & 0xC0) == 0xC0) tx_fifo_overrun=1;
+           }
+      }
       if(ozy_software_version!=control_in[4]) {
         ozy_software_version=control_in[4];
         g_print("FPGA firmware version: %d.%d\n",ozy_software_version/10,ozy_software_version%10);
diff --git a/radio.c b/radio.c
index 501cb1cdf988f116bdf6ae273d012ffba912827b..4e4b511c0b06b73d3b6230e7e506a8375d71f4f6 100644 (file)
--- a/radio.c
+++ b/radio.c
@@ -253,6 +253,8 @@ unsigned int n_temperature;
 unsigned int current;
 unsigned int average_current;
 unsigned int n_current;
+unsigned int tx_fifo_underrun;
+unsigned int tx_fifo_overrun;
 unsigned int alex_forward_power;
 unsigned int alex_reverse_power;
 unsigned int AIN3;
@@ -1181,6 +1183,8 @@ void start_radio() {
   n_temperature=0;
   current=0;
   average_current=0;
+  tx_fifo_underrun=0;
+  tx_fifo_overrun=0;
   n_current=0;
 
   display_sequence_errors=TRUE;
diff --git a/radio.h b/radio.h
index 74b4e8a7f433f52d44640f2bf2085aed898f48e1..9b322cc92083ba0a5c34dd109e24f29db1921105 100644 (file)
--- a/radio.h
+++ b/radio.h
@@ -244,6 +244,8 @@ extern unsigned int n_temperature;
 extern unsigned int current;
 extern unsigned int average_current;
 extern unsigned int n_current;
+extern unsigned int tx_fifo_underrun;
+extern unsigned int tx_fifo_overrun;
 extern unsigned int alex_forward_power;
 extern unsigned int alex_reverse_power;
 extern unsigned int IO1;
index dae2b553702bfd6ba88a1cf7da14662dca5536a4..4ca7870d752ead8ac1557b769ed13f48c0f0f3c9 100644 (file)
@@ -49,6 +49,7 @@ static gdouble hz_per_pixel;
 static gdouble filter_left=0.0;
 static gdouble filter_right=0.0;
 
+static gint tx_fifo_count=0;
 
 /* Create a new surface of the appropriate size to store our scribbles */
 static gboolean
@@ -442,6 +443,25 @@ void tx_panadapter_update(TRANSMITTER *tx) {
     sprintf(text,"%0.0fmA",c);
     cairo_move_to(cr, 160.0, 30.0);
     cairo_show_text(cr, text);
+
+    if (tx_fifo_overrun || tx_fifo_underrun) {
+      cairo_set_source_rgb(cr,1.0,0.0,0.0);
+      if (tx_fifo_underrun) {
+        cairo_move_to(cr, 220.0, 30.0);
+        cairo_show_text(cr, "Underrun");
+      }
+      if (tx_fifo_overrun) {
+        cairo_move_to(cr, 300.0, 30.0);
+        cairo_show_text(cr, "Overrun");
+      }
+      // display for 2 seconds
+      tx_fifo_count++;
+      if (tx_fifo_count >= 2*tx->fps) {
+        tx_fifo_underrun=0;
+        tx_fifo_overrun=0;
+        tx_fifo_count=0;
+      }
+    }
   }
 
   cairo_destroy (cr);