]>
Commit | Line | Data |
---|---|---|
a553f267 | 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 | ||
7fe9b0b7 | 11 | #ifndef CMDLF_H__ |
12 | #define CMDLF_H__ | |
50564be0 | 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" | |
7fe9b0b7 | 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); | |
e98300f2 | 44 | int CmdIndalaClone(const char *Cmd); |
7fe9b0b7 | 45 | int CmdLFRead(const char *Cmd); |
46 | int CmdLFSim(const char *Cmd); | |
abd6112f | 47 | int CmdLFaskSim(const char *Cmd); |
48 | int CmdLFfskSim(const char *Cmd); | |
872e3d4d | 49 | int CmdLFpskSim(const char *Cmd); |
7fe9b0b7 | 50 | int CmdLFSimBidir(const char *Cmd); |
b014c96d | 51 | int CmdLFSnoop(const char *Cmd); |
7fe9b0b7 | 52 | int CmdVchDemod(const char *Cmd); |
d5a72d2f | 53 | int CmdLFfind(const char *Cmd); |
7fe9b0b7 | 54 | |
f82894ba | 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); | |
7fe9b0b7 | 63 | #endif |