mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07: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,10 +122,12 @@ int main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
|
|
||||||
serial_port_name = argv[1];
|
serial_port_name = argv[1];
|
||||||
|
|
||||||
fprintf(stderr,"Waiting for Proxmark to appear on USB...");
|
fprintf(stderr,"Waiting for Proxmark to appear on USB...");
|
||||||
while (!OpenProxmark(0)) {
|
do {
|
||||||
|
sleep(1);
|
||||||
fprintf(stderr, ".");
|
fprintf(stderr, ".");
|
||||||
}
|
} while (!OpenProxmark(0));
|
||||||
fprintf(stderr," Found.\n");
|
fprintf(stderr," Found.\n");
|
||||||
|
|
||||||
res = flash_start_flashing(can_write_bl);
|
res = flash_start_flashing(can_write_bl);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue