mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-15 17:00:04 +08:00
chg: commandline mode execution now has less output
This commit is contained in:
parent
80573aa7f6
commit
dc23a6d5ce
1 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ void main_loop(char *script_cmds_file, char *script_cmd, bool usb_present) {
|
||||||
rarg.run = 1;
|
rarg.run = 1;
|
||||||
pthread_create(&reader_thread, NULL, &uart_receiver, &rarg);
|
pthread_create(&reader_thread, NULL, &uart_receiver, &rarg);
|
||||||
// cache Version information now:
|
// cache Version information now:
|
||||||
CmdVersion(NULL);
|
CmdVersion( (script_cmds_file) ? "s" : NULL );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (script_cmds_file) {
|
if (script_cmds_file) {
|
||||||
|
@ -186,7 +186,7 @@ void main_loop(char *script_cmds_file, char *script_cmd, bool usb_present) {
|
||||||
rarg.run = 1;
|
rarg.run = 1;
|
||||||
pthread_create(&reader_thread, NULL, &uart_receiver, &rarg);
|
pthread_create(&reader_thread, NULL, &uart_receiver, &rarg);
|
||||||
// cache Version information now:
|
// cache Version information now:
|
||||||
CmdVersion(NULL);
|
CmdVersion( (script_cmds_file) ? "s" : NULL );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue