]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfcotag.c
5e3f28b66cda5f0e88c1bebae6d32d5d5116f46b
[proxmark3-svn] / client / cmdlfcotag.c
1 //-----------------------------------------------------------------------------
2 // Authored by Iceman
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 // Low frequency COTAG commands
9 //-----------------------------------------------------------------------------
10 #include "cmdlfcotag.h" // COTAG function declarations
11
12 static int CmdHelp(const char *Cmd);
13
14 int CmdCOTAGRead(const char *Cmd) {
15
16 // if (Cmd[0] == 'h' || Cmd[0] == 'H') return usage_lf_cotag_read();
17
18 CmdLFSetConfig("q 89");
19
20 UsbCommand c = {CMD_COTAG, {0, 0, 0}};
21 clearCommandBuffer();
22 SendCommand(&c);
23 if ( !WaitForResponseTimeout(CMD_ACK, NULL, 2500) ) {
24 PrintAndLog("command execution time out");
25 return 1;
26 }
27 getSamples("", true);
28 return 0;
29 }
30
31 static command_t CommandTable[] = {
32 {"help", CmdHelp, 1, "This help"},
33 {"read", CmdCOTAGRead, 0, "Attempt to read and extract tag data"},
34 {NULL, NULL, 0, NULL}
35 };
36
37 int CmdLFCOTAG(const char *Cmd) {
38 clearCommandBuffer();
39 CmdsParse(CommandTable, Cmd);
40 return 0;
41 }
42
43 int CmdHelp(const char *Cmd) {
44 CmdsHelp(CommandTable);
45 return 0;
46 }
Impressum, Datenschutz