]>
Commit | Line | Data |
---|---|---|
db25599d | 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 AWID commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #ifndef CMDLFAWID_H__ | |
12 | #define CMDLFAWID_H__ | |
13 | ||
f5291a6c | 14 | #include <stdio.h> // sscanf |
15 | #include <stdbool.h> // bool | |
16 | #include "proxmark3.h" // Definitions, USB controls, etc | |
17 | #include "ui.h" // PrintAndLog | |
18 | #include "cmdparser.h" // CmdsParse, CmdsHelp | |
19 | #include "lfdemod.h" // parityTest | |
20 | #include "util.h" // weigandparity | |
87c10b2a | 21 | #include "cmdlf.h" // lf read |
f5291a6c | 22 | #include "protocols.h" // for T55xx config register definitions |
23 | #include "cmdmain.h" | |
24 | #include "sleep.h" | |
25 | ||
26 | ||
db25599d | 27 | int CmdLFAWID(const char *Cmd); |
db25599d | 28 | int CmdAWIDDemodFSK(const char *Cmd); |
87c10b2a | 29 | int CmdAWIDRead(const char *Cmd); |
db25599d | 30 | int CmdAWIDSim(const char *Cmd); |
31 | int CmdAWIDClone(const char *Cmd); | |
508b37ba | 32 | int CmdAWIDBrute(const char *Cmd); |
8fd9bfb0 | 33 | int getAWIDBits(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint8_t *AWIDBits); |
db25599d | 34 | int usage_lf_awid_fskdemod(void); |
35 | int usage_lf_awid_clone(void); | |
36 | int usage_lf_awid_sim(void); | |
508b37ba | 37 | int usage_lf_awid_brute(void); |
db25599d | 38 | |
39 | #endif |