mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
modify argtable parser to parse ints with spaces (#683)
* modify argtable parser to parse ints with spaces * added arg_strx1 and arg_strx0 for x str arguments in one * added option to clue data in arg parser * add new argtable logic to emv commands and small fix * small fix in GPO help * small GPO fix
This commit is contained in:
parent
f23565c38b
commit
11146fc1e1
4 changed files with 33 additions and 12 deletions
|
@ -742,7 +742,7 @@ int CmdHF14AAPDU(const char *cmd) {
|
|||
arg_lit0("sS", "select", "activate field and select card"),
|
||||
arg_lit0("kK", "keep", "leave the signal field ON after receive response"),
|
||||
arg_lit0("tT", "tlv", "executes TLV decoder if it possible"),
|
||||
arg_str1(NULL, NULL, "<APDU (hex)>", NULL),
|
||||
arg_strx1(NULL, NULL, "<APDU (hex)>", NULL),
|
||||
arg_param_end
|
||||
};
|
||||
CLIExecWithReturn(cmd, argtable, false);
|
||||
|
@ -807,7 +807,7 @@ int CmdHF14ACmdRaw(const char *cmd) {
|
|||
arg_int0("t", "timeout", NULL, "timeout in ms"),
|
||||
arg_lit0("T", "topaz", "use Topaz protocol to send command"),
|
||||
arg_lit0("3", NULL, "ISO14443-3 select only (skip RATS)"),
|
||||
arg_str1(NULL, NULL, "<data (hex)>", NULL),
|
||||
arg_strx1(NULL, NULL, "<data (hex)>", NULL),
|
||||
arg_param_end
|
||||
};
|
||||
// defaults
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue