adapt list command to allow for options

This commit is contained in:
iceman1001
2020-10-09 20:19:36 +02:00
parent 627a361666
commit 64a44d1e85
16 changed files with 98 additions and 56 deletions

View File

@@ -844,9 +844,11 @@ static int CmdSmartSetClock(const char *Cmd) {
}
static int CmdSmartList(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
CmdTraceList("7816");
return PM3_SUCCESS;
char args[128];
if (strlen(Cmd) == 0) {
snprintf(args, sizeof(args), "-t 7816");
}
return CmdTraceList(args);
}
static void smart_brute_prim(void) {