]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fix detection of lf t55x7 if xtd bits set but...
authormarshmellow42 <marshmellowrf@gmail.com>
Fri, 19 Feb 2016 20:54:32 +0000 (15:54 -0500)
committermarshmellow42 <marshmellowrf@gmail.com>
Fri, 19 Feb 2016 20:54:32 +0000 (15:54 -0500)
...not used

client/cmdlft55xx.c

index 7e0b697a5c0a98935e809746dd4c378cceafa0ed..7d9543532fbb5257721414dbebc9ee870772182f 100644 (file)
@@ -784,14 +784,14 @@ bool test(uint8_t mode, uint8_t *offset, int *fndBitRate, uint8_t clk, bool *Q5)
                uint8_t extend   = PackBits(si, 1, DemodBuffer); si += 1;     //bit 15 extended mode\r
                uint8_t modread  = PackBits(si, 5, DemodBuffer); si += 5+2+1; \r
                //uint8_t pskcr   = PackBits(si, 2, DemodBuffer); si += 2+1;  //could check psk cr\r
-               uint8_t nml01    = PackBits(si, 1, DemodBuffer); si += 1+5;   //bit 24, 30, 31 could be tested for 0 if not extended mode\r
-               uint8_t nml02    = PackBits(si, 2, DemodBuffer); si += 2;\r
+               //uint8_t nml01    = PackBits(si, 1, DemodBuffer); si += 1+5;   //bit 24, 30, 31 could be tested for 0 if not extended mode\r
+               //uint8_t nml02    = PackBits(si, 2, DemodBuffer); si += 2;\r
                \r
                //if extended mode\r
                bool extMode =( (safer == 0x6 || safer == 0x9) && extend) ? TRUE : FALSE;\r
 \r
                if (!extMode){\r
-                       if (nml01 || nml02 || xtRate) continue;\r
+                       if (xtRate) continue;  //nml01 || nml02 ||  caused issues on noralys tags\r
                }\r
                //test modulation\r
                if (!testModulation(mode, modread)) continue;\r
Impressum, Datenschutz