mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-12 04:35:28 -07:00
avoid rolling dots over the screen when proxmark is not available (yet)
This commit is contained in:
parent
d8193fa5ac
commit
4a049b7847
@ -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…
x
Reference in New Issue
Block a user