]>
Commit | Line | Data |
---|---|---|
5a6e19e6 | 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 CMDLFPRESCO_H__ | |
10 | #define CMDLFPRESCO_H__ | |
11 | #include "proxmark3.h" | |
12 | #include "ui.h" | |
13 | #include "util.h" | |
14 | #include "graph.h" | |
15 | #include "cmdparser.h" | |
16 | #include "cmddata.h" | |
17 | #include "cmdmain.h" | |
18 | #include "cmdlf.h" | |
19 | #include "protocols.h" // for T55xx config register definitions | |
20 | #include "lfdemod.h" // parityTest | |
21 | int CmdLFPresco(const char *Cmd); | |
22 | int CmdPrescoClone(const char *Cmd); | |
6c68b84a | 23 | int CmdPrescoSim(const char *Cmd); |
d48175d4 | 24 | int CmdPrescoRead(const char *Cmd); |
25 | int CmdPrescoDemod(const char *Cmd); | |
6c68b84a | 26 | |
27 | int GetWiegandFromPresco(const char *id, uint32_t *sitecode, uint32_t *usercode, uint32_t *fullcode, bool *Q5); | |
5a6e19e6 | 28 | |
29 | int usage_lf_presco_clone(void); | |
30 | int usage_lf_presco_sim(void); | |
5a6e19e6 | 31 | #endif |
32 |