]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
avoid rolling dots over the screen when proxmark is not available (yet)
authorroel@libnfc.org <roel@libnfc.org@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Thu, 21 Mar 2013 16:06:09 +0000 (16:06 +0000)
committerroel@libnfc.org <roel@libnfc.org@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Thu, 21 Mar 2013 16:06:09 +0000 (16:06 +0000)
client/flasher.c

index cf2cdd954abac543f7f661bc693194677eb53201..6019a6b937120d3c7c3fe893c8887861d733348a 100644 (file)
@@ -122,11 +122,13 @@ int main(int argc, char **argv)
        }
 
   serial_port_name = argv[1];
-       fprintf(stderr, "Waiting for Proxmark to appear on USB...");
-       while (!OpenProxmark(0)) {
-               fprintf(stderr, ".");
-       }
-       fprintf(stderr, " Found.\n");
+  
+  fprintf(stderr,"Waiting for Proxmark to appear on USB...");
+  do {
+    sleep(1);
+    fprintf(stderr, ".");
+  } while (!OpenProxmark(0));
+  fprintf(stderr," Found.\n");
 
        res = flash_start_flashing(can_write_bl);
        if (res < 0)
Impressum, Datenschutz