mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
Fix help text for hf iclass esetblk
This commit is contained in:
parent
d183944bb1
commit
bc87615008
1 changed files with 3 additions and 6 deletions
|
@ -1225,16 +1225,13 @@ static int CmdHFiClassEView(const char *Cmd) {
|
||||||
static int CmdHFiClassESetBlk(const char *Cmd) {
|
static int CmdHFiClassESetBlk(const char *Cmd) {
|
||||||
CLIParserContext *ctx;
|
CLIParserContext *ctx;
|
||||||
CLIParserInit(&ctx, "hf iclass esetblk",
|
CLIParserInit(&ctx, "hf iclass esetblk",
|
||||||
"Display emulator memory.\n"
|
"Sets an individual block in emulator memory.",
|
||||||
"Number of bytes to download defaults to 256. Other value is 2048.",
|
"hf iclass esetblk -b 7 -d 0000000000000000");
|
||||||
"hf iclass eview\n"
|
|
||||||
"hf iclass eview -s 2048\n"
|
|
||||||
"hf iclass eview -s 2048 -v");
|
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
arg_int1("b", "blk", "<dec>", "block number"),
|
arg_int1("b", "blk", "<dec>", "block number"),
|
||||||
arg_str0("d", "data", "<hex>", "bytes to write, 16 hex bytes"),
|
arg_str0("d", "data", "<hex>", "bytes to write, 8 hex bytes"),
|
||||||
arg_param_end
|
arg_param_end
|
||||||
};
|
};
|
||||||
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue