mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
avoid rolling dots over the screen when proxmark is not available (yet)
This commit is contained in:
parent
d8193fa5ac
commit
4a049b7847
1 changed files with 7 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue