]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdlf.h
ADD: Added the HitagS from @spenneb ref:https://events.ccc.de/congress/2015/Fahrplan...
[proxmark3-svn] / client / cmdlf.h
CommitLineData
a553f267 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 commands
9//-----------------------------------------------------------------------------
10
7fe9b0b7 11#ifndef CMDLF_H__
12#define CMDLF_H__
50564be0 13#include <stdio.h>
14#include <stdlib.h>
15#include <string.h>
16#include <limits.h>
17#include "proxmark3.h"
18#include "data.h"
19#include "graph.h"
20#include "ui.h"
21#include "cmdparser.h"
22#include "cmdmain.h"
23#include "cmddata.h"
24#include "util.h"
25#include "cmdlfhid.h"
26#include "cmdlfawid.h"
27#include "cmdlfti.h"
28#include "cmdlfem4x.h"
29#include "cmdlfhitag.h"
30#include "cmdlft55xx.h"
31#include "cmdlfpcf7931.h"
32#include "cmdlfio.h"
33#include "lfdemod.h"
34#include "cmdlfviking.h"
35#include "cmdlfpresco.h"
36#include "cmdlfpyramid.h"
37#include "cmdlfguard.h"
7fe9b0b7 38
39int CmdLF(const char *Cmd);
40
41int CmdLFCommandRead(const char *Cmd);
42int CmdFlexdemod(const char *Cmd);
43int CmdIndalaDemod(const char *Cmd);
e98300f2 44int CmdIndalaClone(const char *Cmd);
7fe9b0b7 45int CmdLFRead(const char *Cmd);
46int CmdLFSim(const char *Cmd);
abd6112f 47int CmdLFaskSim(const char *Cmd);
48int CmdLFfskSim(const char *Cmd);
872e3d4d 49int CmdLFpskSim(const char *Cmd);
7fe9b0b7 50int CmdLFSimBidir(const char *Cmd);
b014c96d 51int CmdLFSnoop(const char *Cmd);
7fe9b0b7 52int CmdVchDemod(const char *Cmd);
d5a72d2f 53int CmdLFfind(const char *Cmd);
7fe9b0b7 54
f82894ba 55// usages helptext
56int usage_lf_cmdread(void);
57int usage_lf_read(void);
58int usage_lf_snoop(void);
59int usage_lf_config(void);
60int usage_lf_simfsk(void);
61int usage_lf_simask(void);
62int usage_lf_simpsk(void);
7fe9b0b7 63#endif
Impressum, Datenschutz