]>
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" | |
42c235e7 | 18 | #include "lfdemod.h" // device/client demods of LF signals |
6c283951 | 19 | #include "util.h" // for parsing cli command utils |
20 | #include "ui.h" // for show graph controls | |
21 | #include "graph.h" // for graph data | |
22 | #include "cmdparser.h" // for getting cli commands included in cmdmain.h | |
23 | #include "cmdmain.h" // for sending cmds to device | |
24 | #include "data.h" // for GetFromBigBuf | |
25 | #include "cmddata.h" // for `lf search` | |
26 | #include "cmdlfawid.h" // for awid menu | |
27 | #include "cmdlfem4x.h" // for em4x menu | |
28 | #include "cmdlfhid.h" // for hid menu | |
29 | #include "cmdlfhitag.h" // for hitag menu | |
30 | #include "cmdlfio.h" // for ioprox menu | |
31 | #include "cmdlft55xx.h" // for t55xx menu | |
32 | #include "cmdlfti.h" // for ti menu | |
33 | #include "cmdlfpresco.h" // for presco menu | |
34 | #include "cmdlfpcf7931.h" // for pcf7931 menu | |
35 | #include "cmdlfpyramid.h" // for pyramid menu | |
36 | #include "cmdlfviking.h" // for viking menu | |
37 | #include "cmdlfguard.h" // for GuardAll menu | |
38 | #include "cmdlfnedap.h" // for NEDAP menu | |
39 | #include "cmdlfjablotron.h" // for JABLOTRON menu | |
eb911aa8 | 40 | #include "cmdlfvisa2000.h" // for VISA2000 menu |
22eece1e | 41 | #include "cmdlfnoralsy.h" // for NORALSY meny |
c48211f7 | 42 | #include "cmdlffdx.h" // for FDX-B meny |
4653da43 | 43 | #include "cmdlfcotag.h" // for COTAG meny |
42c235e7 | 44 | |
45 | #define T55XX_WRITE_TIMEOUT 1500 | |
46 | ||
7fe9b0b7 | 47 | int CmdLF(const char *Cmd); |
48 | ||
507afbf3 | 49 | int CmdLFSetConfig(const char *Cmd); |
50 | ||
7fe9b0b7 | 51 | int CmdLFCommandRead(const char *Cmd); |
52 | int CmdFlexdemod(const char *Cmd); | |
53 | int CmdIndalaDemod(const char *Cmd); | |
e98300f2 | 54 | int CmdIndalaClone(const char *Cmd); |
7fe9b0b7 | 55 | int CmdLFRead(const char *Cmd); |
56 | int CmdLFSim(const char *Cmd); | |
abd6112f | 57 | int CmdLFaskSim(const char *Cmd); |
58 | int CmdLFfskSim(const char *Cmd); | |
872e3d4d | 59 | int CmdLFpskSim(const char *Cmd); |
7fe9b0b7 | 60 | int CmdLFSimBidir(const char *Cmd); |
b014c96d | 61 | int CmdLFSnoop(const char *Cmd); |
7fe9b0b7 | 62 | int CmdVchDemod(const char *Cmd); |
d5a72d2f | 63 | int CmdLFfind(const char *Cmd); |
7fe9b0b7 | 64 | |
f82894ba | 65 | // usages helptext |
66 | int usage_lf_cmdread(void); | |
67 | int usage_lf_read(void); | |
68 | int usage_lf_snoop(void); | |
69 | int usage_lf_config(void); | |
70 | int usage_lf_simfsk(void); | |
71 | int usage_lf_simask(void); | |
72 | int usage_lf_simpsk(void); | |
7fe9b0b7 | 73 | #endif |