1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // High frequency commands
9 //-----------------------------------------------------------------------------
15 #include "cmdparser.h"
21 #include "cmdhflegic.h"
22 #include "cmdhficlass.h"
25 static int CmdHelp(const char *Cmd
);
27 int CmdHFTune(const char *Cmd
)
29 UsbCommand c
={CMD_MEASURE_ANTENNA_TUNING_HF
};
34 static command_t CommandTable
[] =
36 {"help", CmdHelp
, 1, "This help"},
37 {"14a", CmdHF14A
, 1, "{ ISO14443A RFIDs... }"},
38 {"14b", CmdHF14B
, 1, "{ ISO14443B RFIDs... }"},
39 {"15", CmdHF15
, 1, "{ ISO15693 RFIDs... }"},
40 {"epa", CmdHFEPA
, 1, "{ German Identification Card... }"},
41 {"legic", CmdHFLegic
, 0, "{ LEGIC RFIDs... }"},
42 {"iclass", CmdHFiClass
, 1, "{ ICLASS RFIDs... }"},
43 {"mf", CmdHFMF
, 1, "{ MIFARE RFIDs... }"},
44 {"tune", CmdHFTune
, 0, "Continuously measure HF antenna tuning"},
48 int CmdHF(const char *Cmd
)
50 CmdsParse(CommandTable
, Cmd
);
54 int CmdHelp(const char *Cmd
)
56 CmdsHelp(CommandTable
);