//
// 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;
#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
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();
}
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) {
#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
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);