]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
add ability to turn off/on sequence error display
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Sat, 21 Mar 2020 14:18:11 +0000 (14:18 +0000)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Sat, 21 Mar 2020 14:18:11 +0000 (14:18 +0000)
display_menu.c
radio.c
radio.h
rx_panadapter.c

index 2097ffbb6ba59207d114e5909dd269911fe43ae4..a47b683dee1675a063ac65ff80a5ab9119ef8067 100644 (file)
@@ -134,6 +134,10 @@ static void display_toolbar_cb(GtkWidget *widget, gpointer data) {
   reconfigure_radio();
 }
 
+static void display_sequence_errors_cb(GtkWidget *widget, gpointer data) {
+  display_sequence_errors=display_sequence_errors==1?0:1;
+}
+
 void display_menu(GtkWidget *parent) {
   parent_window=parent;
 
@@ -438,6 +442,14 @@ void display_menu(GtkWidget *parent) {
   gtk_grid_attach(GTK_GRID(grid),b_display_toolbar,col,row,1,1);
   g_signal_connect(b_display_toolbar,"toggled",G_CALLBACK(display_toolbar_cb),(gpointer *)NULL);
 
+  col++;
+
+  GtkWidget *b_display_sequence_errors=gtk_check_button_new_with_label("Display Seq Errs");
+  gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (b_display_sequence_errors), display_sequence_errors);
+  gtk_widget_show(b_display_sequence_errors);
+  gtk_grid_attach(GTK_GRID(grid),b_display_sequence_errors,col,row,1,1);
+  g_signal_connect(b_display_sequence_errors,"toggled",G_CALLBACK(display_sequence_errors_cb),(gpointer *)NULL);
+
   gtk_container_add(GTK_CONTAINER(content),grid);
 
   sub_menu=dialog;
diff --git a/radio.c b/radio.c
index d173d353514ddd577614947d46d98604fba5a886..d498650df5ed6266691bc4fd46220e1e35ac5a73 100644 (file)
--- a/radio.c
+++ b/radio.c
@@ -321,7 +321,8 @@ int can_transmit=0;
 gboolean duplex=FALSE;
 gboolean mute_rx_while_transmitting=FALSE;
 
-int sequence_errors=0;
+gboolean display_sequence_errors=TRUE;
+gint sequence_errors=0;
 
 gint rx_height;
 
@@ -941,6 +942,8 @@ void start_radio() {
   average_current=0;
   n_current=0;
 
+  display_sequence_errors=TRUE;
+
   radioRestoreState();
 
 //
@@ -2028,6 +2031,8 @@ g_print("radioRestoreState: %s\n",property_path);
   }
 #endif
 
+  value=getProperty("radio.display_sequence_errors");
+  if(value!=NULL) display_sequence_errors=atoi(value);
        
 //g_print("sem_post\n");
 #ifdef __APPLE__
@@ -2323,6 +2328,9 @@ g_print("radioSaveState: %s\n",property_path);
     sprintf(value,"%d",rigctl_port_base);
     setProperty("rigctl_port_base",value);
 
+    sprintf(value,"%d",display_sequence_errors);
+    setProperty("radio.display_sequence_errors",value);
+
     saveProperties(property_path);
 g_print("sem_post\n");
 #ifdef __APPLE__
diff --git a/radio.h b/radio.h
index 3b4127b11c3f4d30063b84f94d2a87ceb36fcf87..ef826a626b812fe5ce76a9f4a4ca281ac2a30b7f 100644 (file)
--- a/radio.h
+++ b/radio.h
@@ -299,7 +299,8 @@ extern int have_rx_gain;   // TRUE on HermesLite/RadioBerry
 extern int rx_gain_calibration;  // position of the RX gain slider that
                                 // corresponds to zero amplification/attenuation
 
-extern int sequence_errors;
+extern gboolean display_sequence_errors;
+extern gint sequence_errors;
 
 extern void radio_stop();
 extern void reconfigure_radio();
index f6e41f31d189dae9c4c339fd776759d22f99d89c..7771b4c03324d5c337417d740ae5462e4b0c232c 100644 (file)
@@ -553,16 +553,18 @@ void rx_panadapter_update(RECEIVER *rx) {
   }
 #endif
 
-  if(sequence_errors!=0) {
-    cairo_move_to(cr,100.0,50.0);
-    cairo_set_source_rgb(cr,1.0,0.0,0.0);
-    cairo_set_font_size(cr,12);
-    cairo_show_text(cr, "Sequence Error");
-    sequence_error_count++;
-    // show for 2 second
-    if(sequence_error_count==2*rx->fps) {
-      sequence_errors=0;
-      sequence_error_count=0;
+  if(display_sequence_errors) {
+    if(sequence_errors!=0) {
+      cairo_move_to(cr,100.0,50.0);
+      cairo_set_source_rgb(cr,1.0,0.0,0.0);
+      cairo_set_font_size(cr,12);
+      cairo_show_text(cr, "Sequence Error");
+      sequence_error_count++;
+      // show for 2 second
+      if(sequence_error_count==2*rx->fps) {
+        sequence_errors=0;
+        sequence_error_count=0;
+      }
     }
   }