some lF commands demod got cliparser

This commit is contained in:
iceman1001
2020-11-29 01:45:26 +01:00
parent 5dd8b3294a
commit 878170f2bd
6 changed files with 72 additions and 6 deletions

View File

@@ -272,7 +272,18 @@ out:
}
static int CmdTIDemod(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
CLIParserContext *ctx;
CLIParserInit(&ctx, "lf ti demod",
"Try to find TI preamble, if found decode / descramble data",
"lf ti demod"
);
void *argtable[] = {
arg_param_begin,
arg_param_end
};
CLIExecWithReturn(ctx, Cmd, argtable, true);
CLIParserFree(ctx);
return demodTI(true);
}