]>
Commit | Line | Data |
---|---|---|
1 | // Low frequency Kantech IOProx commands | |
2 | //----------------------------------------------------------------------------- | |
3 | ||
4 | #ifndef CMDLFIO_H__ | |
5 | #define CMDLFIO_H__ | |
6 | ||
7 | #include <stdio.h> // sscanf | |
8 | #include "proxmark3.h" // Definitions, USB controls, etc | |
9 | #include "ui.h" // PrintAndLog | |
10 | #include "cmdparser.h" // CmdsParse, CmdsHelp | |
11 | #include "cmdlfawid.h" // AWID function declarations | |
12 | #include "lfdemod.h" // parityTest | |
13 | #include "util.h" // weigandparity | |
14 | #include "protocols.h" // for T55xx config register definitions | |
15 | ||
16 | #include <stdlib.h> | |
17 | #include <string.h> | |
18 | #include "data.h" | |
19 | #include "cmdmain.h" | |
20 | #include "cmddata.h" | |
21 | #include "lfdemod.h" // bitbytes_to_byte | |
22 | int CmdLFIO(const char *Cmd); | |
23 | int CmdIODemodFSK(const char *Cmd); | |
24 | int CmdIOClone(const char *Cmd); | |
25 | ||
26 | int getIOProxBits(uint8_t version, uint8_t fc, uint16_t cn, uint8_t *bits); | |
27 | int usage_lf_io_fskdemod(void); | |
28 | int usage_lf_io_clone(void); | |
29 | int usage_lf_io_sim(void); | |
30 | #endif |