]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/cmdlf.h
ADD: num_to_bytebitsLSBF function.
[proxmark3-svn] / client / cmdlf.h
... / ...
CommitLineData
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
11#ifndef CMDLF_H__
12#define CMDLF_H__
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"
38
39int CmdLF(const char *Cmd);
40
41int CmdLFCommandRead(const char *Cmd);
42int CmdFlexdemod(const char *Cmd);
43int CmdIndalaDemod(const char *Cmd);
44int CmdIndalaClone(const char *Cmd);
45int CmdLFRead(const char *Cmd);
46int CmdLFSim(const char *Cmd);
47int CmdLFaskSim(const char *Cmd);
48int CmdLFfskSim(const char *Cmd);
49int CmdLFpskSim(const char *Cmd);
50int CmdLFSimBidir(const char *Cmd);
51int CmdLFSnoop(const char *Cmd);
52int CmdVchDemod(const char *Cmd);
53int CmdLFfind(const char *Cmd);
54
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);
63#endif
Impressum, Datenschutz