From e23ea7dbde6c53f05afd311281e2d2c98e6543ab Mon Sep 17 00:00:00 2001 From: John Melton G0ORX Date: Tue, 7 Jul 2020 15:33:16 +0100 Subject: [PATCH] Added back preamp setting for Mercury systems. Added ability to autostart when 1 device discovered. --- discovery.c | 11 +++++++++++ old_protocol.c | 14 ++++++++++---- protocols.c | 18 ++++++++++++++++++ protocols.h | 3 ++- rx_menu.c | 11 +++++++++++ 5 files changed, 52 insertions(+), 5 deletions(-) diff --git a/discovery.c b/discovery.c index c9d6c99..27fdd28 100644 --- a/discovery.c +++ b/discovery.c @@ -365,6 +365,7 @@ void discovery() { 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"); @@ -523,6 +524,16 @@ fprintf(stderr,"%p Protocol=%d name=%s\n",d,d->protocol,d->name); } } + + 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"); diff --git a/old_protocol.c b/old_protocol.c index 498ad7d..0733faf 100644 --- a/old_protocol.c +++ b/old_protocol.c @@ -1402,10 +1402,16 @@ static int last_power=0; case 4: output_buffer[C0]=0x14; output_buffer[C1]=0x00; - // All current boards have NO switchable preamps - //for(i=0;ipreamp<preamp<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))) { -- 2.45.2