+// 0 = FSK\r
+// 1 = ASK\r
+// 2 = PSK\r
+// 4 = NZR (direct)\r
+typedef struct {\r
+ uint8_t modulation;\r
+ bool inversed;\r
+ uint32_t block0;\r
+} t55xx_conf_block;\r
+\r
+// Default configuration: FSK, not inversed.\r
+t55xx_conf_block config = {0x00, FALSE, 0x00};\r
+\r
+ // FSK\r
+ // FSK inverted\r
+ //FSKrawDemod("", FALSE)\r
+ //FSKrawDemod("1", FALSE)\r
+\r
+ // ASK/MAN\r
+ // ASK/MAN inverted\r
+ //ASKmanDemod("", FALSE, FALSE)\r
+ \r
+ // NZR (autoclock, normal, maxerrors 1)\r
+ // NZR (autoclock, inverse, maxerrors 1)\r
+ //NRZrawDemod("0 0 1", FALSE) ) {\r
+ \r
+ // PSK (autoclock, normal, maxerrors 1)\r
+ // PSK (autoclock, inverse, maxerrors 1)\r
+ //PSKDemod("0 0 1", FALSE)\r
+\r
+int usage_t55xx_config(){\r
+ PrintAndLog("Usage: lf t55xx config [d <demodulation>] [i 0|1]");\r
+ PrintAndLog("Options: ");\r
+ PrintAndLog(" h This help");\r
+ PrintAndLog(" d <> Set demodulation FSK / ASK / PSK / NZR");\r
+ PrintAndLog(" i [0|1] Inverse data signal, Default: 0");\r
+ PrintAndLog("Examples:");\r
+ PrintAndLog(" lf t55xx config d FSK ");\r
+ PrintAndLog(" FSK demodulation");\r
+ PrintAndLog(" lf t55xx config d FSK i 1");\r
+ PrintAndLog(" FSK demodulation, inverse data");\r
+ PrintAndLog(" lf dump");\r
+ PrintAndLog(" Dumps all block from tag");\r
+ PrintAndLog(" lf trace");\r
+ PrintAndLog(" Read trace block and decode it");\r
+ PrintAndLog(" lf info");\r
+ PrintAndLog(" Read configuration and decode it");\r
+ return 0;\r
+}\r