mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
reverse read_reply in 14b raw
This commit is contained in:
parent
d19da982f0
commit
86e682feff
2 changed files with 11 additions and 11 deletions
|
@ -284,7 +284,7 @@ static int CmdHF14BCmdRaw(const char *Cmd) {
|
|||
arg_lit0(NULL, "sr", "activate field, use SRx ST select"),
|
||||
arg_lit0(NULL, "cts", "activate field, use ASK C-ticket select"),
|
||||
arg_lit0("c", "crc", "calculate and append CRC"),
|
||||
arg_lit0(NULL, "noresponse", "do not read response from card"),
|
||||
arg_lit0("-r", NULL, "do not read response from card"),
|
||||
arg_int0("t", "timeout", "<dec>", "timeout in ms"),
|
||||
arg_lit0("v", "verbose", "verbose"),
|
||||
arg_strx0("d", "data", "<hex>", "data, bytes to send"),
|
||||
|
@ -297,7 +297,7 @@ static int CmdHF14BCmdRaw(const char *Cmd) {
|
|||
bool select_sr = arg_get_lit(ctx, 3);
|
||||
bool select_cts = arg_get_lit(ctx, 4);
|
||||
bool add_crc = arg_get_lit(ctx, 5);
|
||||
bool read_reply = !arg_get_lit(ctx, 6);
|
||||
bool read_reply = (arg_get_lit(ctx, 6) == false);
|
||||
int user_timeout = arg_get_int_def(ctx, 7, -1);
|
||||
bool verbose = arg_get_lit(ctx, 8);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue