mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 19:59:34 +08:00
Replace WITH_ISO15693 by dynamic detection in client
This commit is contained in:
parent
2d99c6096b
commit
582d948ac2
1 changed files with 13 additions and 13 deletions
|
@ -1276,19 +1276,19 @@ static int CmdHF15Restore(const char *Cmd) {
|
||||||
static command_t CommandTable[] = {
|
static command_t CommandTable[] = {
|
||||||
{"help", CmdHF15Help, AlwaysAvailable, "This help"},
|
{"help", CmdHF15Help, AlwaysAvailable, "This help"},
|
||||||
{"demod", CmdHF15Demod, AlwaysAvailable, "Demodulate ISO15693 from tag"},
|
{"demod", CmdHF15Demod, AlwaysAvailable, "Demodulate ISO15693 from tag"},
|
||||||
{"dump", CmdHF15Dump, IfPm3Present, "Read all memory pages of an ISO15693 tag, save to file"},
|
{"dump", CmdHF15Dump, IfPm3Iso15693, "Read all memory pages of an ISO15693 tag, save to file"},
|
||||||
{"findafi", CmdHF15Afi, IfPm3Present, "Brute force AFI of an ISO15693 tag"},
|
{"findafi", CmdHF15Afi, IfPm3Iso15693, "Brute force AFI of an ISO15693 tag"},
|
||||||
{"info", CmdHF15Info, IfPm3Present, "Tag information"},
|
{"info", CmdHF15Info, IfPm3Iso15693, "Tag information"},
|
||||||
{"list", CmdHF15List, IfPm3Present, "List ISO15693 history"},
|
{"list", CmdHF15List, IfPm3Iso15693, "List ISO15693 history"},
|
||||||
{"raw", CmdHF15Raw, IfPm3Present, "Send raw hex data to tag"},
|
{"raw", CmdHF15Raw, IfPm3Iso15693, "Send raw hex data to tag"},
|
||||||
{"reader", CmdHF15Reader, IfPm3Present, "Act like an ISO15693 reader"},
|
{"reader", CmdHF15Reader, IfPm3Iso15693, "Act like an ISO15693 reader"},
|
||||||
{"record", CmdHF15Record, IfPm3Present, "Record Samples (ISO15693)"},
|
{"record", CmdHF15Record, IfPm3Iso15693, "Record Samples (ISO15693)"},
|
||||||
{"restore", CmdHF15Restore, IfPm3Present, "Restore from file to all memory pages of an ISO15693 tag"},
|
{"restore", CmdHF15Restore, IfPm3Iso15693, "Restore from file to all memory pages of an ISO15693 tag"},
|
||||||
{"sim", CmdHF15Sim, IfPm3Present, "Fake an ISO15693 tag"},
|
{"sim", CmdHF15Sim, IfPm3Iso15693, "Fake an ISO15693 tag"},
|
||||||
{"samples", CmdHF15Samples, IfPm3Present, "Acquire Samples as Reader (enables carrier, sends inquiry)"},
|
{"samples", CmdHF15Samples, IfPm3Iso15693, "Acquire Samples as Reader (enables carrier, sends inquiry)"},
|
||||||
{"read", CmdHF15Read, IfPm3Present, "Read a block"},
|
{"read", CmdHF15Read, IfPm3Iso15693, "Read a block"},
|
||||||
{"write", CmdHF15Write, IfPm3Present, "Write a block"},
|
{"write", CmdHF15Write, IfPm3Iso15693, "Write a block"},
|
||||||
{"readmulti", CmdHF15Readmulti, IfPm3Present, "Reads multiple Blocks"},
|
{"readmulti", CmdHF15Readmulti, IfPm3Iso15693, "Reads multiple Blocks"},
|
||||||
{NULL, NULL, NULL, NULL}
|
{NULL, NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue