]>
Commit | Line | Data |
---|---|---|
4653da43 | 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 | // Low frequency AWID commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #ifndef CMDLFCOTAG_H__ | |
12 | #define CMDLFCOTAG_H__ | |
13 | ||
a330987d | 14 | #include "proxmark3.h" // Definitions, USB controls, COTAG_BITS |
76c0ec0b | 15 | #include "util.h" // FALSE / TRUE |
4653da43 | 16 | #include "cmddata.h" // getSamples |
17 | #include "cmdparser.h" // CmdsParse, CmdsHelp | |
18 | #include "cmdmain.h" | |
507afbf3 | 19 | #include "ui.h" // PrintAndLog |
20 | #include "cmdlf.h" // Setconfig | |
4653da43 | 21 | |
a330987d | 22 | #ifndef COTAG_BITS |
52108cab | 23 | #define COTAG_BITS 264 |
a330987d | 24 | #endif |
25 | ||
4653da43 | 26 | int CmdLFCOTAG(const char *Cmd); |
27 | int CmdCOTAGRead(const char *Cmd); | |
5f5b83b7 | 28 | int CmdCOTAGDemod(const char *Cmd); |
4653da43 | 29 | |
5f5b83b7 | 30 | int usage_lf_cotag_read(void); |
4653da43 | 31 | #endif |