]> cvs.zerfleddert.de Git - proxmark3-svn/blobdiff - common/lfdemod.c
CHG: removed a warning about unused variable. Lets see if perror works.
[proxmark3-svn] / common / lfdemod.c
index 3bc246a3e20b5831f01764ac51ee94ee100c2330..24336160634104ae793420234fadbdb05754787b 100644 (file)
@@ -768,8 +768,9 @@ int PyramiddemodFSK(uint8_t *dest, size_t *size)
 int NedapDemod(uint8_t *dest, size_t *size) {
        //make sure buffer has data
        if (*size < 128) return -3;
+
        size_t startIdx = 0;
-       uint8_t preamble[] = {1,1,1,1,1,1,1,1,1,0};
+       uint8_t preamble[] = {1,1,1,1,1,1,1,1,1,0,0,0,1};
        uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
        if (errChk == 0) return -4; //preamble not found
        //return start position
Impressum, Datenschutz