mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 05:13:22 -07:00
First implementation of user scripts - very experimental - YMMV
This commit is contained in:
parent
ba8b5c173b
commit
806dc07542
6 changed files with 337 additions and 4 deletions
|
@ -24,6 +24,7 @@
|
|||
#include "cmdlf.h"
|
||||
#include "cmdmain.h"
|
||||
#include "util.h"
|
||||
#include "cmdscript.h"
|
||||
|
||||
unsigned int current_command = CMD_UNKNOWN;
|
||||
unsigned int received_command = CMD_UNKNOWN;
|
||||
|
@ -42,6 +43,7 @@ static command_t CommandTable[] =
|
|||
{"hw", CmdHW, 1, "{ Hardware commands... }"},
|
||||
{"lf", CmdLF, 1, "{ LF commands... }"},
|
||||
{"quit", CmdQuit, 1, "Quit program"},
|
||||
{"script", CmdScript, 1,"Run script"},
|
||||
{NULL, NULL, 0, NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue