ADD: started to add a offset possibility for the LF T55XX.

Ie.
  lf t55xx read 0
  lf t55xx special
  lf t55xx config o 2
  lf t55xx read 0

ADD:  added @marshmellows latest changes to psk
This commit is contained in:
iceman1001
2015-03-14 08:43:48 +01:00
parent 2c5ed70651
commit db69363840
4 changed files with 88 additions and 47 deletions

View File

@@ -19,6 +19,7 @@ typedef struct {
DEMOD_BI = 0x05,
} modulation;
bool inversed;
uint8_t offset;
uint32_t block0;
} t55xx_conf_block_t;
@@ -42,4 +43,5 @@ void printConfiguration( t55xx_conf_block_t b);
void DecodeT55xxBlock();
bool tryDetectModulation();
bool test();
int special(const char *Cmd);
#endif