fprintf(stderr,"discovery: found %d devices\n", devices);
gdk_window_set_cursor(gtk_widget_get_window(top_window),gdk_cursor_new(GDK_ARROW));
+
discovery_dialog = gtk_dialog_new();
gtk_window_set_transient_for(GTK_WINDOW(discovery_dialog),GTK_WINDOW(top_window));
gtk_window_set_title(GTK_WINDOW(discovery_dialog),"piHPSDR - Discovery");
}
}
+
+ g_print("%s: devices=%d autostart=%d\n",__FUNCTION__,devices,autostart);
+
+ if(devices==1 && autostart) {
+ d=&discovered[0];
+ if(d->status==STATE_AVAILABLE) {
+ if(start_cb(NULL,NULL,(gpointer)d)) return;
+ }
+ }
+
#ifdef CLIENT_SERVER
loadProperties("remote.props");
case 4:
output_buffer[C0]=0x14;
output_buffer[C1]=0x00;
- // All current boards have NO switchable preamps
- //for(i=0;i<receivers;i++) {
- // output_buffer[C1]|=(receiver[i]->preamp<<i);
- //}
+
+#ifdef USBOZY
+ if ((device == DEVICE_OZY) || (device == DEVICE_METIS)) {
+#else
+ if (device == DEVICE_METIS) {
+#endif
+ for(i=0;i<receivers;i++) {
+ output_buffer[C1]|=(receiver[i]->preamp<<i);
+ }
+ }
if(mic_ptt_enabled==0) {
output_buffer[C1]|=0x40;
}
#ifdef STEMLAB_DISCOVERY
gboolean enable_stemlab;
#endif
+gboolean autostart;
void protocols_save_state() {
char value[80];
setProperty("enable_stemlab",value);
#endif
+ sprintf(value,"%d",autostart);
+ setProperty("autostart",value);
saveProperties("protocols.props");
}
value=getProperty("enable_stemlab");
if(value) enable_stemlab=atoi(value);
#endif
+ autostart=FALSE;
+ value=getProperty("autostart");
+ if(value) autostart=atoi(value);
+
clearProperties();
}
}
#endif
+static void autostart_cb(GtkToggleButton *widget, gpointer data) {
+ autostart=gtk_toggle_button_get_active(widget);
+}
+
void configure_protocols(GtkWidget *parent) {
int row;
row++;
#endif
+ GtkWidget *b_autostart=gtk_check_button_new_with_label("Auto start if only one device");
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (b_autostart), autostart);
+ gtk_widget_show(b_autostart);
+ g_signal_connect(b_autostart,"toggled",G_CALLBACK(autostart_cb),NULL);
+ gtk_grid_attach(GTK_GRID(grid),b_autostart,0,row,1,1);
+ row++;
+
gtk_container_add(GTK_CONTAINER(content),grid);
gtk_widget_show_all(dialog);
extern gboolean enable_soapy_protocol;
#endif
#ifdef STEMLAB_DISCOVERY
-gboolean enable_stemlab;
+extern gboolean enable_stemlab;
#endif
+extern gboolean autostart;
extern void protocols_save_state();
extern void protocols_restore_state();
gtk_grid_attach(GTK_GRID(grid),random_b,x,3,1,1);
g_signal_connect(random_b,"toggled",G_CALLBACK(random_cb),NULL);
+ if((protocol==ORIGINAL_PROTOCOL && device == DEVICE_METIS) ||
+#ifdef USBOZY
+ (protocol==ORIGINAL_PROTOCOL && device == DEVICE_OZY) ||
+#endif
+ (protocol==NEW_PROTOCOL && device == NEW_DEVICE_ATLAS)) {
+ GtkWidget *preamp_b=gtk_check_button_new_with_label("Preamp");
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (preamp_b), active_receiver->preamp);
+ gtk_grid_attach(GTK_GRID(grid),preamp_b,x,4,1,1);
+ g_signal_connect(preamp_b,"toggled",G_CALLBACK(preamp_cb),NULL);
+ }
+
if (filter_board == ALEX && active_receiver->adc == 0
&& ((protocol==ORIGINAL_PROTOCOL && device != DEVICE_ORION2) || (protocol==NEW_PROTOCOL && device != NEW_DEVICE_ORION2))) {