]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlffdx.h
4f5026105009a0f6c3f3d302e5d830155422d78f
1 //-----------------------------------------------------------------------------
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
6 //-----------------------------------------------------------------------------
7 // Low frequency T55xx commands
8 //-----------------------------------------------------------------------------
14 #include "proxmark3.h"
18 #include "cmdparser.h"
22 #include "crc16.h" // for checksum crc-16_ccitt
23 #include "protocols.h" // for T55xx config register definitions
24 #include "lfdemod.h" // parityTest
25 int CmdLFFdx(const char *Cmd
);
26 int CmdFdxClone(const char *Cmd
);
27 int CmdFdxSim(const char *Cmd
);
28 int CmdFdxRead(const char *Cmd
);
29 int CmdFdxDemod(const char *Cmd
);
31 int getFDXBits(uint64_t national_id
, uint16_t country
, uint8_t isanimal
, uint8_t isextended
, uint32_t extended
, uint8_t *bits
);
33 int usage_lf_fdx_clone(void);
34 int usage_lf_fdx_sim(void);
35 int usage_lf_fdx_read(void);
36 int usage_lf_fdx_demod(void);