mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
hf iclass info - uses cliparser
This commit is contained in:
parent
2c29009bab
commit
70af2bfbc0
1 changed files with 11 additions and 0 deletions
|
@ -568,6 +568,17 @@ static int CmdHFiClassSim(const char *Cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int CmdHFiClassInfo(const char *Cmd) {
|
static int CmdHFiClassInfo(const char *Cmd) {
|
||||||
|
CLIParserContext *ctx;
|
||||||
|
CLIParserInit(&ctx, "hf iclass info",
|
||||||
|
"Act as a iCLASS reader. Reads / fingerprints a iCLASS tag.",
|
||||||
|
"hf iclass info");
|
||||||
|
|
||||||
|
void *argtable[] = {
|
||||||
|
arg_param_begin,
|
||||||
|
arg_param_end
|
||||||
|
};
|
||||||
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
||||||
|
CLIParserFree(ctx);
|
||||||
return info_iclass();
|
return info_iclass();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue