X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/d716ca2fc1062c3c7f67cb52b0799df32adf6b0d..33add1876412aca37722ccbce81583d45737a121:/client/cmdlft55xx.h diff --git a/client/cmdlft55xx.h b/client/cmdlft55xx.h index cbd6312a..e1f4d223 100644 --- a/client/cmdlft55xx.h +++ b/client/cmdlft55xx.h @@ -11,18 +11,19 @@ #define CMDLFT55XX_H__ int CmdLFT55XX(const char *Cmd); +int CmdT55xxSetConfig(const char *Cmd); +int CmdT55xxReadBlock(const char *Cmd); +int CmdT55xxWriteBlock(const char *Cmd); +int CmdT55xxReadTrace(const char *Cmd); +int CmdT55xxInfo(const char *Cmd); +int CmdT55xxDetect(const char *Cmd); -int CmdReadBlk(const char *Cmd); -int CmdWriteBlk(const char *Cmd); -int CmdReadTrace(const char *Cmd); -int CmdInfo(const char *Cmd); -int CmdIceFsk(const char *Cmd); -int CmdIceManchester(const char *Cmd); -int ManchesterDemod(int block); char * GetBitRateStr(uint32_t id); char * GetSaferStr(uint32_t id); char * GetModulationStr( uint32_t id); uint32_t PackBits(uint8_t start, uint8_t len, uint8_t* bitstream); -bool tryDemod(uint8_t bits[], uint32_t bitlen); -bool analyseDemod( int errCnt, size_t bitlen, uint8_t clock, uint8_t invert); +void printT55xxBlock(const char *demodStr); +void DecodeT55xxBlock(); +bool tryDetectModulation(); +bool test(); #endif