]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfcotag.c
1 //-----------------------------------------------------------------------------
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 // Low frequency COTAG commands
9 //-----------------------------------------------------------------------------
10 #include "cmdlfcotag.h" // COTAG function declarations
12 static int CmdHelp(const char *Cmd
);
14 int CmdCOTAGRead(const char *Cmd
) {
16 // if (Cmd[0] == 'h' || Cmd[0] == 'H') return usage_lf_cotag_read();
18 UsbCommand c
= {CMD_COTAG
, {0, 0, 0}};
21 if ( !WaitForResponseTimeout(CMD_ACK
, NULL
, 2500) ) {
22 PrintAndLog("command execution time out");
25 getSamples("20000", true);
29 static command_t CommandTable
[] = {
30 {"help", CmdHelp
, 1, "This help"},
31 {"read", CmdCOTAGRead
, 0, "Attempt to read and extract tag data"},
35 int CmdLFCOTAG(const char *Cmd
) {
37 CmdsParse(CommandTable
, Cmd
);
41 int CmdHelp(const char *Cmd
) {
42 CmdsHelp(CommandTable
);