]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
synchronized upon merging
authorc vw <dl1ycf@darc.de>
Fri, 26 Nov 2021 15:25:09 +0000 (16:25 +0100)
committerc vw <dl1ycf@darc.de>
Fri, 26 Nov 2021 15:25:09 +0000 (16:25 +0100)
discovery.c
old_discovery.c

index ef8011461fa0bac74e2e8dd058bbb0172b5c6aae..ed9d6fa16d5e9a03adbc12da0907772165b73660 100644 (file)
@@ -76,7 +76,9 @@ gint host_port=45000;
 
 //
 // This is a variable for the second phase of STEMlab discovery.
-// Here we know we have a stemlab and will re-discover only P1
+// If set, we already have detected + selected the STEMlab,
+// started the SDR app on the RedPitaya and run a "P1 only"
+// discovery to obtain data from the SDR app
 //
 static int discover_only_p1 = 0;
 
@@ -237,7 +239,7 @@ void discovery() {
 #endif
 
 #ifdef STEMLAB_DISCOVERY
-  if(enable_stemlab && ! discover_only_p1) {
+  if(enable_stemlab && !discover_only_p1) {
 #ifdef NO_AVAHI
     status_text("Looking for STEMlab WEB apps");
 #else
@@ -252,13 +254,13 @@ void discovery() {
     old_discovery();
   }
 
-  if(enable_protocol_2 && ! discover_only_p1) {
+  if(enable_protocol_2 && !discover_only_p1) {
     status_text("Protocol 2 ... Discovering Devices");
     new_discovery();
   }
 
 #ifdef SOAPYSDR
-  if(enable_soapy_protocol && ! discover_only_p1) {
+  if(enable_soapy_protocol && !discover_only_p1) {
     status_text("SoapySDR ... Discovering Devices");
     soapy_discovery();
   }
@@ -367,7 +369,7 @@ fprintf(stderr,"%p Protocol=%d name=%s\n",d,d->protocol,d->name);
         gtk_widget_override_font(start_button, pango_font_description_from_string("Sans 16"));
         gtk_widget_show(start_button);
         gtk_grid_attach(GTK_GRID(grid),start_button,3,row,1,1);
-        g_signal_connect(start_button,"button_press_event",G_CALLBACK(start_cb),(gpointer)d);
+        g_signal_connect(start_button,"button-press-event",G_CALLBACK(start_cb),(gpointer)d);
 
         // if not available then cannot start it
         if(d->status!=STATE_AVAILABLE) {
@@ -380,21 +382,22 @@ fprintf(stderr,"%p Protocol=%d name=%s\n",d,d->protocol,d->name);
 #endif
           // if not on the same subnet then cannot start it
          //
-         // DL1YCF: APIPA modification
-         // so-called APIPA addresses are of the numerical form 169.254.xxx.yyy and these addresses are used
-         // by many radios if they do not get a DHCP address. These addresses are valid even if outside the
-         // netmask of the (physical) interface making the connection - so do not complain in this case!
-         //
-         // If the radio has a valid IP address but the computer only has an APIPA address, this also
-         // leads to a radio address outside the netmask and can be ignored.
-         //
+          // NOTE: self-assigned IP  (a.k.a. APIPA) addresses
+          // these addresses are of the numerical form 169.254.xxx.yyy and used
+          // by many radios if they do not get a DHCP address. These addresses are valid even if outside the
+          // netmask of the (physical) interface making the connection - so do not complain in this case!
+          //
+          // If the radio has a valid IP address but the computer only has an APIPA address, this also
+          // leads to a radio address outside the netmask and can be ignored. So if either the radio
+          // or the interface address starts with 169.254., suppress "Subnet!" complaint.
+          //
           if (strncmp(inet_ntoa(d->info.network.address.sin_addr),"169.254.",8) &&
               strncmp(inet_ntoa(d->info.network.interface_address.sin_addr),"169.254.",8)) {
             if((d->info.network.interface_address.sin_addr.s_addr&d->info.network.interface_netmask.sin_addr.s_addr) != (d->info.network.address.sin_addr.s_addr&d->info.network.interface_netmask.sin_addr.s_addr)) {
               gtk_button_set_label(GTK_BUTTON(start_button),"Subnet!");
               gtk_widget_set_sensitive(start_button, FALSE);
             }
-         }
+          }
 #ifdef SOAPYSDR
         }
 #endif
@@ -486,6 +489,7 @@ fprintf(stderr,"%p Protocol=%d name=%s\n",d,d->protocol,d->name);
     gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(gpio),NULL,"Controller1");
     gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(gpio),NULL,"Controller2 V1");
     gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(gpio),NULL,"Controller2 V2");
+    //gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(gpio),NULL,"Controller I2C");
     gtk_grid_attach(GTK_GRID(grid),gpio,0,row,1,1);
 
     gtk_combo_box_set_active(GTK_COMBO_BOX(gpio),controller);
index 9f1e39ce937aef511a23507c59571ac806bf08e0..9b48c6cfaa1c026612a37514311067d8538c7e50 100644 (file)
@@ -238,6 +238,7 @@ static void discover(struct ifaddrs* iface) {
 
 }
 
+//static void *discover_receive_thread(void* arg) {
 static gpointer discover_receive_thread(gpointer data) {
     struct sockaddr_in addr;
     socklen_t len;