]>
Commit | Line | Data |
---|---|---|
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 commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #ifndef CMDLF_H__ | |
12 | #define CMDLF_H__ | |
13 | #include <stdio.h> | |
14 | #include <stdlib.h> | |
15 | #include <string.h> | |
16 | #include <limits.h> | |
17 | #include "proxmark3.h" | |
18 | #include "data.h" | |
19 | #include "graph.h" | |
20 | #include "ui.h" | |
21 | #include "cmdparser.h" | |
22 | #include "cmdmain.h" | |
23 | #include "cmddata.h" | |
24 | #include "util.h" | |
25 | #include "cmdlfhid.h" | |
26 | #include "cmdlfawid.h" | |
27 | #include "cmdlfti.h" | |
28 | #include "cmdlfem4x.h" | |
29 | #include "cmdlfhitag.h" | |
30 | #include "cmdlft55xx.h" | |
31 | #include "cmdlfpcf7931.h" | |
32 | #include "cmdlfio.h" | |
33 | #include "lfdemod.h" | |
34 | #include "cmdlfviking.h" | |
35 | #include "cmdlfpresco.h" | |
36 | #include "cmdlfpyramid.h" | |
37 | #include "cmdlfguard.h" | |
38 | ||
39 | int CmdLF(const char *Cmd); | |
40 | ||
41 | int CmdLFCommandRead(const char *Cmd); | |
42 | int CmdFlexdemod(const char *Cmd); | |
43 | int CmdIndalaDemod(const char *Cmd); | |
44 | int CmdIndalaClone(const char *Cmd); | |
45 | int CmdLFRead(const char *Cmd); | |
46 | int CmdLFSim(const char *Cmd); | |
47 | int CmdLFaskSim(const char *Cmd); | |
48 | int CmdLFfskSim(const char *Cmd); | |
49 | int CmdLFpskSim(const char *Cmd); | |
50 | int CmdLFSimBidir(const char *Cmd); | |
51 | int CmdLFSnoop(const char *Cmd); | |
52 | int CmdVchDemod(const char *Cmd); | |
53 | int CmdLFfind(const char *Cmd); | |
54 | ||
55 | // usages helptext | |
56 | int usage_lf_cmdread(void); | |
57 | int usage_lf_read(void); | |
58 | int usage_lf_snoop(void); | |
59 | int usage_lf_config(void); | |
60 | int usage_lf_simfsk(void); | |
61 | int usage_lf_simask(void); | |
62 | int usage_lf_simpsk(void); | |
63 | #endif |