]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fixed Autostart not initializing GPIO
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Thu, 23 Jul 2020 06:23:50 +0000 (07:23 +0100)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Thu, 23 Jul 2020 06:23:50 +0000 (07:23 +0100)
discovery.c

index 27fdd28fb46780dfcf6ae782562b78bee51bb68b..c9261a7f99195c9bb7237094459b5ff5847fa548 100644 (file)
@@ -525,15 +525,6 @@ 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");
@@ -620,6 +611,16 @@ fprintf(stderr,"%p Protocol=%d name=%s\n",d,d->protocol,d->name);
     gtk_widget_show_all(discovery_dialog);
 fprintf(stderr,"showing device dialog\n");
 
+    // autostart if enabled and only one device
+    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;
+       }
+    }
+
 }