mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
Replace WITH_HITAG by dynamic detection in client
This commit is contained in:
parent
78fdffddf7
commit
d7b53aacee
2 changed files with 10 additions and 12 deletions
|
@ -695,13 +695,13 @@ static int CmdLFHitagDump(const char *Cmd) {
|
|||
|
||||
static command_t CommandTable[] = {
|
||||
{"help", CmdHelp, AlwaysAvailable, "This help" },
|
||||
{"list", CmdLFHitagList, IfPm3Present, "List Hitag trace history" },
|
||||
{"info", CmdLFHitagInfo, AlwaysAvailable, "Tag information" },
|
||||
{"reader", CmdLFHitagReader, AlwaysAvailable, "Act like a Hitag Reader" },
|
||||
{"sim", CmdLFHitagSim, AlwaysAvailable, "Simulate Hitag transponder" },
|
||||
{"sniff", CmdLFHitagSniff, AlwaysAvailable, "Eavesdrop Hitag communication" },
|
||||
{"writer", CmdLFHitagWriter, AlwaysAvailable, "Act like a Hitag Writer" },
|
||||
{"cc", CmdLFHitagCheckChallenges, AlwaysAvailable, "Test all challenges" },
|
||||
{"list", CmdLFHitagList, IfPm3Hitag, "List Hitag trace history" },
|
||||
{"info", CmdLFHitagInfo, IfPm3Hitag, "Tag information" },
|
||||
{"reader", CmdLFHitagReader, IfPm3Hitag, "Act like a Hitag Reader" },
|
||||
{"sim", CmdLFHitagSim, IfPm3Hitag, "Simulate Hitag transponder" },
|
||||
{"sniff", CmdLFHitagSniff, IfPm3Hitag, "Eavesdrop Hitag communication" },
|
||||
{"writer", CmdLFHitagWriter, IfPm3Hitag, "Act like a Hitag Writer" },
|
||||
{"cc", CmdLFHitagCheckChallenges, IfPm3Hitag, "Test all challenges" },
|
||||
{ NULL, NULL, 0, NULL }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue