mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 04:50:12 -07:00
change param names for data detect clock to follow client overall style
This commit is contained in:
parent
78ea432b8c
commit
eb61d0f45e
1 changed files with 6 additions and 8 deletions
|
@ -1106,17 +1106,15 @@ static int CmdDetectClockRate(const char *Cmd) {
|
||||||
CLIParserContext *ctx;
|
CLIParserContext *ctx;
|
||||||
CLIParserInit(&ctx, "data detectclock",
|
CLIParserInit(&ctx, "data detectclock",
|
||||||
"Detect ASK, FSK, NRZ, PSK clock rate of wave in GraphBuffer",
|
"Detect ASK, FSK, NRZ, PSK clock rate of wave in GraphBuffer",
|
||||||
"data detectclock -A --> detect clock of an ask wave in GraphBuffer\n"
|
"data detectclock --ask\n"
|
||||||
"data detectclock -F --> detect clock of an fsk wave in GraphBuffer\n"
|
"data detectclock --nzr --> detect clock of an nrz/direct wave in GraphBuffer\n"
|
||||||
"data detectclock -N --> detect clock of an psk wave in GraphBuffer\n"
|
|
||||||
"data detectclock -P --> detect clock of an nrz/direct wave in GraphBuffer"
|
|
||||||
);
|
);
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
arg_lit0("A", "ASK", "specify ASK modulation clock detection"),
|
arg_lit0(NULL, "ask", "specify ASK modulation clock detection"),
|
||||||
arg_lit0("F", "FSK", "specify FSK modulation clock detection"),
|
arg_lit0(NULL, "fsk", "specify FSK modulation clock detection"),
|
||||||
arg_lit0("N", "NZR", "specify NZR/DIRECT modulation clock detection"),
|
arg_lit0(NULL, "nzr", "specify NZR/DIRECT modulation clock detection"),
|
||||||
arg_lit0("P", "PSK", "specify PSK modulation clock detection"),
|
arg_lit0(NULL, "psk", "specify PSK modulation clock detection"),
|
||||||
arg_param_end
|
arg_param_end
|
||||||
};
|
};
|
||||||
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue