]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdlfnoralsy.h
FIX: lf hitag : Mea culpa, simulation should not have reader_field on. thanks to...
[proxmark3-svn] / client / cmdlfnoralsy.h
CommitLineData
22eece1e 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 CMDLFNORALSY_H__
10#define CMDLFNORALSY_H__
11#include <string.h>
12#include <inttypes.h>
13#include <math.h>
14#include "proxmark3.h"
15#include "ui.h"
16#include "util.h"
17#include "graph.h"
18#include "cmdparser.h"
19#include "cmddata.h"
20#include "cmdmain.h"
21#include "cmdlf.h"
22#include "protocols.h" // for T55xx config register definitions
23#include "lfdemod.h" // parityTest
24int CmdLFNoralsy(const char *Cmd);
25int CmdNoralsyClone(const char *Cmd);
26int CmdNoralsySim(const char *Cmd);
27int CmdNoralsyRead(const char *Cmd);
28int CmdNoralsyDemod(const char *Cmd);
29
9a6bc2fe 30int getnoralsyBits(uint32_t id, uint16_t year, uint8_t *bits);
22eece1e 31
32int usage_lf_noralsy_clone(void);
33int usage_lf_noralsy_sim(void);
34int usage_lf_noralsy_read(void);
35int usage_lf_noralsy_demod(void);
36#endif
37
Impressum, Datenschutz