]>
Commit | Line | Data |
---|---|---|
a45882e2 | 1 | // Low frequency Kantech IOProx commands |
c8622024 | 2 | //----------------------------------------------------------------------------- |
3 | ||
4 | #ifndef CMDLFIO_H__ | |
5 | #define CMDLFIO_H__ | |
6 | ||
a45882e2 | 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 | |
c8622024 | 15 | |
a45882e2 | 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); | |
c8622024 | 23 | int CmdIODemodFSK(const char *Cmd); |
a45882e2 | 24 | int CmdIOClone(const char *Cmd); |
c8622024 | 25 | |
a45882e2 | 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); | |
94faa594 | 30 | #endif |