]>
Commit | Line | Data |
---|---|---|
e98300f2 | 1 | //-----------------------------------------------------------------------------\r |
2 | //\r | |
3 | // This code is licensed to you under the terms of the GNU GPL, version 2 or,\r | |
4 | // at your option, any later version. See the LICENSE.txt file for the text of\r | |
5 | // the license.\r | |
6 | //-----------------------------------------------------------------------------\r | |
7 | // Low frequency T55xx commands\r | |
8 | //-----------------------------------------------------------------------------\r | |
9 | \r | |
10 | #ifndef CMDLFT55XX_H__\r | |
11 | #define CMDLFT55XX_H__\r | |
12 | \r | |
13 | int CmdLFT55XX(const char *Cmd);\r | |
83a42ef9 | 14 | int CmdT55xxSetConfig(const char *Cmd);\r |
e98300f2 | 15 | int CmdReadBlk(const char *Cmd);\r |
e98300f2 | 16 | int CmdWriteBlk(const char *Cmd);\r |
e98300f2 | 17 | int CmdReadTrace(const char *Cmd);\r |
f6c18637 | 18 | int CmdInfo(const char *Cmd);\r |
83a42ef9 | 19 | \r |
f6c18637 | 20 | char * GetBitRateStr(uint32_t id);\r |
21 | char * GetSaferStr(uint32_t id);\r | |
22 | char * GetModulationStr( uint32_t id);\r | |
23 | uint32_t PackBits(uint8_t start, uint8_t len, uint8_t* bitstream);\r | |
83a42ef9 | 24 | void printT55xx(const char *demodStr);\r |
e98300f2 | 25 | #endif\r |