]>
Commit | Line | Data |
---|---|---|
c48211f7 | 1 | //----------------------------------------------------------------------------- |
2 | // | |
3 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
4 | // at your option, any later version. See the LICENSE.txt file for the text of | |
5 | // the license. | |
6 | //----------------------------------------------------------------------------- | |
7 | // Low frequency T55xx commands | |
8 | //----------------------------------------------------------------------------- | |
9 | #ifndef CMDLFFDX_H__ | |
10 | #define CMDLFFDX_H__ | |
08439eea | 11 | #include "proxmark3.h" // Definitions, USB controls, etc |
12 | #include "ui.h" // PrintAndLog | |
13 | #include "util.h" // weigandparity | |
c48211f7 | 14 | #include "cmdparser.h" |
15 | #include "cmddata.h" | |
16 | #include "cmdmain.h" | |
08439eea | 17 | #include "cmdlf.h" // lf read |
c48211f7 | 18 | #include "crc16.h" // for checksum crc-16_ccitt |
19 | #include "protocols.h" // for T55xx config register definitions | |
08439eea | 20 | #include "lfdemod.h" // parityTest |
21 | ||
c48211f7 | 22 | int CmdLFFdx(const char *Cmd); |
23 | int CmdFdxClone(const char *Cmd); | |
24 | int CmdFdxSim(const char *Cmd); | |
25 | int CmdFdxRead(const char *Cmd); | |
26 | int CmdFdxDemod(const char *Cmd); | |
c48211f7 | 27 | int getFDXBits(uint64_t national_id, uint16_t country, uint8_t isanimal, uint8_t isextended, uint32_t extended, uint8_t *bits); |
c48211f7 | 28 | int usage_lf_fdx_clone(void); |
29 | int usage_lf_fdx_sim(void); | |
30 | int usage_lf_fdx_read(void); | |
31 | int usage_lf_fdx_demod(void); | |
32 | #endif | |
33 |