]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhf.c
making USB CDC branch
[proxmark3-svn] / client / cmdhf.c
CommitLineData
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"
5acd09bd 20#include "cmdhfepa.h"
7fe9b0b7 21#include "cmdhflegic.h"
cee5a30d 22#include "cmdhficlass.h"
9ca155ba 23#include "cmdhfmf.h"
7fe9b0b7 24
25static int CmdHelp(const char *Cmd);
26
27int CmdHFTune(const char *Cmd)
28{
29 UsbCommand c={CMD_MEASURE_ANTENNA_TUNING_HF};
30 SendCommand(&c);
31 return 0;
32}
33
34static command_t CommandTable[] =
35{
36 {"help", CmdHelp, 1, "This help"},
37239a7c 37 {"14a", CmdHF14A, 1, "{ ISO14443A RFIDs... }"},
38 {"14b", CmdHF14B, 1, "{ ISO14443B RFIDs... }"},
39 {"15", CmdHF15, 1, "{ ISO15693 RFIDs... }"},
5acd09bd 40 {"epa", CmdHFEPA, 1, "{ German Identification Card... }"},
8e220a91 41 {"legic", CmdHFLegic, 0, "{ LEGIC RFIDs... }"},
cee5a30d 42 {"iclass", CmdHFiClass, 1, "{ ICLASS RFIDs... }"},
9ca155ba 43 {"mf", CmdHFMF, 1, "{ MIFARE RFIDs... }"},
c59c3405 44 {"tune", CmdHFTune, 0, "Continuously measure HF antenna tuning"},
7fe9b0b7 45 {NULL, NULL, 0, NULL}
46};
47
48int CmdHF(const char *Cmd)
49{
50 CmdsParse(CommandTable, Cmd);
51 return 0;
52}
53
54int CmdHelp(const char *Cmd)
55{
56 CmdsHelp(CommandTable);
57 return 0;
58}
Impressum, Datenschutz