CHG: rename of methods to follow naming convention

CHG: LF T55XX CONFIG now defaults to ASK, non-inverse
This commit is contained in:
iceman1001
2015-03-13 10:05:37 +01:00
parent 108262a145
commit 33add18764
2 changed files with 162 additions and 64 deletions

View File

@@ -12,15 +12,18 @@
int CmdLFT55XX(const char *Cmd);
int CmdT55xxSetConfig(const char *Cmd);
int CmdReadBlk(const char *Cmd);
int CmdWriteBlk(const char *Cmd);
int CmdReadTrace(const char *Cmd);
int CmdInfo(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);
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);
void printT55xx(const char *demodStr);
void printT55xxBlock(const char *demodStr);
void DecodeT55xxBlock();
bool tryDetectModulation();
bool test();
#endif