]>
cvs.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 CmdLFSetConfig("q 89");
20 UsbCommand c
= {CMD_COTAG
, {0, 0, 0}};
23 if ( !WaitForResponseTimeout(CMD_ACK
, NULL
, 2500) ) {
24 PrintAndLog("command execution time out");
31 static command_t CommandTable
[] = {
32 {"help", CmdHelp
, 1, "This help"},
33 {"read", CmdCOTAGRead
, 0, "Attempt to read and extract tag data"},
37 int CmdLFCOTAG(const char *Cmd
) {
39 CmdsParse(CommandTable
, Cmd
);
43 int CmdHelp(const char *Cmd
) {
44 CmdsHelp(CommandTable
);