50564be0 |
1 | //----------------------------------------------------------------------------- |
2 | // |
3 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
4 | // at your option, any later version. See the LICENSE.txt file for the text of |
5 | // the license. |
6 | //----------------------------------------------------------------------------- |
7 | // Low frequency T55xx commands |
8 | //----------------------------------------------------------------------------- |
9 | #ifndef CMDLFGUARD_H__ |
10 | #define CMDLFGUARD_H__ |
42c235e7 |
11 | #include <string.h> |
12 | #include <inttypes.h> |
50564be0 |
13 | #include "proxmark3.h" |
14 | #include "ui.h" |
15 | #include "util.h" |
16 | #include "graph.h" |
17 | #include "cmdparser.h" |
18 | #include "cmddata.h" |
19 | #include "cmdmain.h" |
20 | #include "cmdlf.h" |
21 | #include "protocols.h" // for T55xx config register definitions |
22 | #include "lfdemod.h" // parityTest |
23 | #include "crc.h" |
24 | |
25 | int CmdLFGuard(const char *Cmd); |
26 | int CmdGuardClone(const char *Cmd); |
27 | int CmdGuardSim(const char *Cmd); |
28 | |
29 | int usage_lf_guard_clone(void); |
30 | int usage_lf_quard_sim(void); |
31 | #endif |
32 | |