]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlft55xx.h
9362c9f43ae52f29d13818b42515806be12cf11f
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 //-----------------------------------------------------------------------------
10 #ifndef CMDLFT55XX_H__
11 #define CMDLFT55XX_H__
26 int CmdLFT55XX(const char *Cmd
);
27 int CmdT55xxSetConfig(const char *Cmd
);
28 int CmdT55xxReadBlock(const char *Cmd
);
29 int CmdT55xxWriteBlock(const char *Cmd
);
30 int CmdT55xxReadTrace(const char *Cmd
);
31 int CmdT55xxInfo(const char *Cmd
);
32 int CmdT55xxDetect(const char *Cmd
);
34 char * GetBitRateStr(uint32_t id
);
35 char * GetSaferStr(uint32_t id
);
36 char * GetModulationStr( uint32_t id
);
37 char * GetSelectedModulationStr( uint8_t id
);
38 uint32_t PackBits(uint8_t start
, uint8_t len
, uint8_t* bitstream
);
39 void printT55xxBlock(const char *demodStr
);
40 void printConfiguration( t55xx_conf_block_t b
);
42 void DecodeT55xxBlock();
43 bool tryDetectModulation();