]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdlfawid.h
FIX: lf hitag : Mea culpa, simulation should not have reader_field on. thanks to...
[proxmark3-svn] / client / cmdlfawid.h
CommitLineData
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 27int CmdLFAWID(const char *Cmd);
db25599d 28int CmdAWIDDemodFSK(const char *Cmd);
87c10b2a 29int CmdAWIDRead(const char *Cmd);
db25599d 30int CmdAWIDSim(const char *Cmd);
31int CmdAWIDClone(const char *Cmd);
508b37ba 32int CmdAWIDBrute(const char *Cmd);
8fd9bfb0 33int getAWIDBits(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint8_t *AWIDBits);
db25599d 34int usage_lf_awid_fskdemod(void);
35int usage_lf_awid_clone(void);
36int usage_lf_awid_sim(void);
508b37ba 37int usage_lf_awid_brute(void);
db25599d 38
39#endif
Impressum, Datenschutz