]>
Commit | Line | Data |
---|---|---|
a553f267 | 1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> | |
3 | // | |
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 | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // High frequency commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
7fe9b0b7 | 11 | #include <stdio.h> |
12 | #include "proxusb.h" | |
13 | #include "graph.h" | |
14 | #include "ui.h" | |
15 | #include "cmdparser.h" | |
16 | #include "cmdhf.h" | |
17 | #include "cmdhf14a.h" | |
18 | #include "cmdhf14b.h" | |
19 | #include "cmdhf15.h" | |
20 | #include "cmdhflegic.h" | |
cee5a30d | 21 | #include "cmdhficlass.h" |
7fe9b0b7 | 22 | |
23 | static int CmdHelp(const char *Cmd); | |
24 | ||
25 | int CmdHFTune(const char *Cmd) | |
26 | { | |
27 | UsbCommand c={CMD_MEASURE_ANTENNA_TUNING_HF}; | |
28 | SendCommand(&c); | |
29 | return 0; | |
30 | } | |
31 | ||
32 | static command_t CommandTable[] = | |
33 | { | |
34 | {"help", CmdHelp, 1, "This help"}, | |
37239a7c | 35 | {"14a", CmdHF14A, 1, "{ ISO14443A RFIDs... }"}, |
36 | {"14b", CmdHF14B, 1, "{ ISO14443B RFIDs... }"}, | |
37 | {"15", CmdHF15, 1, "{ ISO15693 RFIDs... }"}, | |
8e220a91 | 38 | {"legic", CmdHFLegic, 0, "{ LEGIC RFIDs... }"}, |
cee5a30d | 39 | {"iclass", CmdHFiClass, 1, "{ ICLASS RFIDs... }"}, |
c59c3405 | 40 | {"tune", CmdHFTune, 0, "Continuously measure HF antenna tuning"}, |
7fe9b0b7 | 41 | {NULL, NULL, 0, NULL} |
42 | }; | |
43 | ||
44 | int CmdHF(const char *Cmd) | |
45 | { | |
46 | CmdsParse(CommandTable, Cmd); | |
47 | return 0; | |
48 | } | |
49 | ||
50 | int CmdHelp(const char *Cmd) | |
51 | { | |
52 | CmdsHelp(CommandTable); | |
53 | return 0; | |
54 | } |