]> git.zerfleddert.de Git - proxmark3-svn/blob - common/lfdemod.c
Merge pull request #229 from marshmellow42/master
[proxmark3-svn] / common / lfdemod.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2014
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Low frequency demod/decode commands
9 //-----------------------------------------------------------------------------
10
11 #include <stdlib.h>
12 #include "lfdemod.h"
13 #include <string.h>
14
15 //to allow debug print calls when used not on device
16 void dummy(char *fmt, ...){}
17
18 #ifndef ON_DEVICE
19 #include "ui.h"
20 #include "cmdparser.h"
21 #include "cmddata.h"
22 #define prnt PrintAndLog
23 #else
24 uint8_t g_debugMode=0;
25 #define prnt dummy
26 #endif
27
28 uint8_t justNoise(uint8_t *BitStream, size_t size)
29 {
30 static const uint8_t THRESHOLD = 123;
31 //test samples are not just noise
32 uint8_t justNoise1 = 1;
33 for(size_t idx=0; idx < size && justNoise1 ;idx++){
34 justNoise1 = BitStream[idx] < THRESHOLD;
35 }
36 return justNoise1;
37 }
38
39 //by marshmellow
40 //get high and low values of a wave with passed in fuzz factor. also return noise test = 1 for passed or 0 for only noise
41 int getHiLo(uint8_t *BitStream, size_t size, int *high, int *low, uint8_t fuzzHi, uint8_t fuzzLo)
42 {
43 *high=0;
44 *low=255;
45 // get high and low thresholds
46 for (size_t i=0; i < size; i++){
47 if (BitStream[i] > *high) *high = BitStream[i];
48 if (BitStream[i] < *low) *low = BitStream[i];
49 }
50 if (*high < 123) return -1; // just noise
51 *high = ((*high-128)*fuzzHi + 12800)/100;
52 *low = ((*low-128)*fuzzLo + 12800)/100;
53 return 1;
54 }
55
56 // by marshmellow
57 // pass bits to be tested in bits, length bits passed in bitLen, and parity type (even=0 | odd=1) in pType
58 // returns 1 if passed
59 uint8_t parityTest(uint32_t bits, uint8_t bitLen, uint8_t pType)
60 {
61 uint8_t ans = 0;
62 for (uint8_t i = 0; i < bitLen; i++){
63 ans ^= ((bits >> i) & 1);
64 }
65 if (g_debugMode) prnt("DEBUG: ans: %d, ptype: %d, bits: %08X",ans,pType,bits);
66 return (ans == pType);
67 }
68
69 // by marshmellow
70 // takes a array of binary values, start position, length of bits per parity (includes parity bit),
71 // Parity Type (1 for odd; 0 for even; 2 for Always 1's; 3 for Always 0's), and binary Length (length to run)
72 size_t removeParity(uint8_t *BitStream, size_t startIdx, uint8_t pLen, uint8_t pType, size_t bLen)
73 {
74 uint32_t parityWd = 0;
75 size_t j = 0, bitCnt = 0;
76 for (int word = 0; word < (bLen); word+=pLen) {
77 for (int bit=0; bit < pLen; bit++) {
78 parityWd = (parityWd << 1) | BitStream[startIdx+word+bit];
79 BitStream[j++] = (BitStream[startIdx+word+bit]);
80 }
81 if (word+pLen > bLen) break;
82
83 j--; // overwrite parity with next data
84 // if parity fails then return 0
85 switch (pType) {
86 case 3: if (BitStream[j]==1) {return 0;} break; //should be 0 spacer bit
87 case 2: if (BitStream[j]==0) {return 0;} break; //should be 1 spacer bit
88 default: if (parityTest(parityWd, pLen, pType) == 0) {return 0;} break; //test parity
89 }
90 bitCnt+=(pLen-1);
91 parityWd = 0;
92 }
93 // if we got here then all the parities passed
94 //return ID start index and size
95 return bitCnt;
96 }
97
98 // by marshmellow
99 // takes a array of binary values, length of bits per parity (includes parity bit),
100 // Parity Type (1 for odd; 0 for even; 2 Always 1's; 3 Always 0's), and binary Length (length to run)
101 // Make sure *dest is long enough to store original sourceLen + #_of_parities_to_be_added
102 size_t addParity(uint8_t *BitSource, uint8_t *dest, uint8_t sourceLen, uint8_t pLen, uint8_t pType)
103 {
104 uint32_t parityWd = 0;
105 size_t j = 0, bitCnt = 0;
106 for (int word = 0; word < sourceLen; word+=pLen-1) {
107 for (int bit=0; bit < pLen-1; bit++){
108 parityWd = (parityWd << 1) | BitSource[word+bit];
109 dest[j++] = (BitSource[word+bit]);
110 }
111 // if parity fails then return 0
112 switch (pType) {
113 case 3: dest[j++]=0; break; // marker bit which should be a 0
114 case 2: dest[j++]=1; break; // marker bit which should be a 1
115 default:
116 dest[j++] = parityTest(parityWd, pLen-1, pType) ^ 1;
117 break;
118 }
119 bitCnt += pLen;
120 parityWd = 0;
121 }
122 // if we got here then all the parities passed
123 //return ID start index and size
124 return bitCnt;
125 }
126
127 uint32_t bytebits_to_byte(uint8_t *src, size_t numbits)
128 {
129 uint32_t num = 0;
130 for(int i = 0 ; i < numbits ; i++)
131 {
132 num = (num << 1) | (*src);
133 src++;
134 }
135 return num;
136 }
137
138 //least significant bit first
139 uint32_t bytebits_to_byteLSBF(uint8_t *src, size_t numbits)
140 {
141 uint32_t num = 0;
142 for(int i = 0 ; i < numbits ; i++)
143 {
144 num = (num << 1) | *(src + (numbits-(i+1)));
145 }
146 return num;
147 }
148
149 //by marshmellow
150 //search for given preamble in given BitStream and return success=1 or fail=0 and startIndex and length
151 uint8_t preambleSearch(uint8_t *BitStream, uint8_t *preamble, size_t pLen, size_t *size, size_t *startIdx)
152 {
153 return (preambleSearchEx(BitStream, preamble, pLen, size, startIdx, false)) ? 1 : 0;
154 }
155
156 // search for given preamble in given BitStream and return success=1 or fail=0 and startIndex (where it was found) and length if not fineone
157 // fineone does not look for a repeating preamble for em4x05/4x69 sends preamble once, so look for it once in the first pLen bits
158 bool preambleSearchEx(uint8_t *BitStream, uint8_t *preamble, size_t pLen, size_t *size, size_t *startIdx, bool findone) {
159 // Sanity check. If preamble length is bigger than bitstream length.
160 if ( *size <= pLen ) return false;
161
162 uint8_t foundCnt = 0;
163 for (size_t idx = 0; idx < *size - pLen; idx++) {
164 if (memcmp(BitStream+idx, preamble, pLen) == 0) {
165 //first index found
166 foundCnt++;
167 if (foundCnt == 1) {
168 if (g_debugMode) prnt("DEBUG: preamble found at %u", idx);
169 *startIdx = idx;
170 if (findone) return true;
171 } else if (foundCnt == 2) {
172 *size = idx - *startIdx;
173 return true;
174 }
175 }
176 }
177 return false;
178 }
179
180 // find start of modulating data (for fsk and psk) in case of beginning noise or slow chip startup.
181 size_t findModStart(uint8_t dest[], size_t size, uint8_t threshold_value, uint8_t expWaveSize) {
182 size_t i = 0;
183 size_t waveSizeCnt = 0;
184 uint8_t thresholdCnt = 0;
185 bool isAboveThreshold = dest[i++] >= threshold_value;
186 for (; i < size-20; i++ ) {
187 if(dest[i] < threshold_value && isAboveThreshold) {
188 thresholdCnt++;
189 if (thresholdCnt > 2 && waveSizeCnt < expWaveSize+1) break;
190 isAboveThreshold = false;
191 waveSizeCnt = 0;
192 } else if (dest[i] >= threshold_value && !isAboveThreshold) {
193 thresholdCnt++;
194 if (thresholdCnt > 2 && waveSizeCnt < expWaveSize+1) break;
195 isAboveThreshold = true;
196 waveSizeCnt = 0;
197 } else {
198 waveSizeCnt++;
199 }
200 if (thresholdCnt > 10) break;
201 }
202 if (g_debugMode == 2) prnt("DEBUG: threshold Count reached at %u, count: %u",i, thresholdCnt);
203 return i;
204 }
205
206 //by marshmellow
207 //takes 1s and 0s and searches for EM410x format - output EM ID
208 uint8_t Em410xDecode(uint8_t *BitStream, size_t *size, size_t *startIdx, uint32_t *hi, uint64_t *lo)
209 {
210 //sanity checks
211 if (*size < 64) return 0;
212 if (BitStream[1]>1) return 0; //allow only 1s and 0s
213
214 // 111111111 bit pattern represent start of frame
215 // include 0 in front to help get start pos
216 uint8_t preamble[] = {0,1,1,1,1,1,1,1,1,1};
217 uint8_t errChk = 0;
218 uint8_t FmtLen = 10; // sets of 4 bits = end data
219 *startIdx = 0;
220 errChk = preambleSearch(BitStream, preamble, sizeof(preamble), size, startIdx);
221 if ( errChk == 0 || (*size != 64 && *size != 128) ) return 0;
222 if (*size == 128) FmtLen = 22; // 22 sets of 4 bits
223
224 //skip last 4bit parity row for simplicity
225 *size = removeParity(BitStream, *startIdx + sizeof(preamble), 5, 0, FmtLen * 5);
226 if (*size == 40) { // std em410x format
227 *hi = 0;
228 *lo = ((uint64_t)(bytebits_to_byte(BitStream, 8)) << 32) | (bytebits_to_byte(BitStream + 8, 32));
229 } else if (*size == 88) { // long em format
230 *hi = (bytebits_to_byte(BitStream, 24));
231 *lo = ((uint64_t)(bytebits_to_byte(BitStream + 24, 32)) << 32) | (bytebits_to_byte(BitStream + 24 + 32, 32));
232 } else {
233 return 0;
234 }
235 return 1;
236 }
237
238 //by marshmellow
239 //demodulates strong heavily clipped samples
240 int cleanAskRawDemod(uint8_t *BinStream, size_t *size, int clk, int invert, int high, int low)
241 {
242 size_t bitCnt=0, smplCnt=0, errCnt=0;
243 uint8_t waveHigh = 0;
244 for (size_t i=0; i < *size; i++){
245 if (BinStream[i] >= high && waveHigh){
246 smplCnt++;
247 } else if (BinStream[i] <= low && !waveHigh){
248 smplCnt++;
249 } else { //transition
250 if ((BinStream[i] >= high && !waveHigh) || (BinStream[i] <= low && waveHigh)){
251 if (smplCnt > clk-(clk/4)-1) { //full clock
252 if (smplCnt > clk + (clk/4)+1) { //too many samples
253 errCnt++;
254 if (g_debugMode==2) prnt("DEBUG ASK: Modulation Error at: %u", i);
255 BinStream[bitCnt++]=7;
256 } else if (waveHigh) {
257 BinStream[bitCnt++] = invert;
258 BinStream[bitCnt++] = invert;
259 } else if (!waveHigh) {
260 BinStream[bitCnt++] = invert ^ 1;
261 BinStream[bitCnt++] = invert ^ 1;
262 }
263 waveHigh ^= 1;
264 smplCnt = 0;
265 } else if (smplCnt > (clk/2) - (clk/4)-1) {
266 if (waveHigh) {
267 BinStream[bitCnt++] = invert;
268 } else if (!waveHigh) {
269 BinStream[bitCnt++] = invert ^ 1;
270 }
271 waveHigh ^= 1;
272 smplCnt = 0;
273 } else if (!bitCnt) {
274 //first bit
275 waveHigh = (BinStream[i] >= high);
276 smplCnt = 1;
277 } else {
278 smplCnt++;
279 //transition bit oops
280 }
281 } else { //haven't hit new high or new low yet
282 smplCnt++;
283 }
284 }
285 }
286 *size = bitCnt;
287 return errCnt;
288 }
289
290 //by marshmellow
291 //amplify based on ask edge detection
292 void askAmp(uint8_t *BitStream, size_t size)
293 {
294 uint8_t Last = 128;
295 for(size_t i = 1; i<size; i++){
296 if (BitStream[i]-BitStream[i-1]>=30) //large jump up
297 Last = 255;
298 else if(BitStream[i-1]-BitStream[i]>=20) //large jump down
299 Last = 0;
300
301 BitStream[i-1] = Last;
302 }
303 return;
304 }
305
306 //by marshmellow
307 //attempts to demodulate ask modulations, askType == 0 for ask/raw, askType==1 for ask/manchester
308 int askdemod(uint8_t *BinStream, size_t *size, int *clk, int *invert, int maxErr, uint8_t amp, uint8_t askType)
309 {
310 if (*size==0) return -1;
311 int start = DetectASKClock(BinStream, *size, clk, maxErr); //clock default
312 if (*clk==0 || start < 0) return -3;
313 if (*invert != 1) *invert = 0;
314 if (amp==1) askAmp(BinStream, *size);
315 if (g_debugMode==2) prnt("DEBUG ASK: clk %d, beststart %d, amp %d", *clk, start, amp);
316
317 uint8_t initLoopMax = 255;
318 if (initLoopMax > *size) initLoopMax = *size;
319 // Detect high and lows
320 //25% clip in case highs and lows aren't clipped [marshmellow]
321 int high, low;
322 if (getHiLo(BinStream, initLoopMax, &high, &low, 75, 75) < 1)
323 return -2; //just noise
324
325 size_t errCnt = 0;
326 // if clean clipped waves detected run alternate demod
327 if (DetectCleanAskWave(BinStream, *size, high, low)) {
328 if (g_debugMode==2) prnt("DEBUG ASK: Clean Wave Detected - using clean wave demod");
329 errCnt = cleanAskRawDemod(BinStream, size, *clk, *invert, high, low);
330 if (askType) //askman
331 return manrawdecode(BinStream, size, 0);
332 else //askraw
333 return errCnt;
334 }
335 if (g_debugMode==2) prnt("DEBUG ASK: Weak Wave Detected - using weak wave demod");
336
337 int lastBit; //set first clock check - can go negative
338 size_t i, bitnum = 0; //output counter
339 uint8_t midBit = 0;
340 uint8_t tol = 0; //clock tolerance adjust - waves will be accepted as within the clock if they fall + or - this value + clock from last valid wave
341 if (*clk <= 32) tol = 1; //clock tolerance may not be needed anymore currently set to + or - 1 but could be increased for poor waves or removed entirely
342 size_t MaxBits = 3072; //max bits to collect
343 lastBit = start - *clk;
344
345 for (i = start; i < *size; ++i) {
346 if (i-lastBit >= *clk-tol){
347 if (BinStream[i] >= high) {
348 BinStream[bitnum++] = *invert;
349 } else if (BinStream[i] <= low) {
350 BinStream[bitnum++] = *invert ^ 1;
351 } else if (i-lastBit >= *clk+tol) {
352 if (bitnum > 0) {
353 if (g_debugMode==2) prnt("DEBUG ASK: Modulation Error at: %u", i);
354 BinStream[bitnum++]=7;
355 errCnt++;
356 }
357 } else { //in tolerance - looking for peak
358 continue;
359 }
360 midBit = 0;
361 lastBit += *clk;
362 } else if (i-lastBit >= (*clk/2-tol) && !midBit && !askType){
363 if (BinStream[i] >= high) {
364 BinStream[bitnum++] = *invert;
365 } else if (BinStream[i] <= low) {
366 BinStream[bitnum++] = *invert ^ 1;
367 } else if (i-lastBit >= *clk/2+tol) {
368 BinStream[bitnum] = BinStream[bitnum-1];
369 bitnum++;
370 } else { //in tolerance - looking for peak
371 continue;
372 }
373 midBit = 1;
374 }
375 if (bitnum >= MaxBits) break;
376 }
377 *size = bitnum;
378 return errCnt;
379 }
380
381 //by marshmellow
382 //take 10 and 01 and manchester decode
383 //run through 2 times and take least errCnt
384 int manrawdecode(uint8_t * BitStream, size_t *size, uint8_t invert)
385 {
386 uint16_t bitnum=0, MaxBits = 512, errCnt = 0;
387 size_t i, ii;
388 uint16_t bestErr = 1000, bestRun = 0;
389 if (*size < 16) return -1;
390 //find correct start position [alignment]
391 for (ii=0;ii<2;++ii){
392 for (i=ii; i<*size-3; i+=2)
393 if (BitStream[i]==BitStream[i+1])
394 errCnt++;
395
396 if (bestErr>errCnt){
397 bestErr=errCnt;
398 bestRun=ii;
399 }
400 errCnt=0;
401 }
402 //decode
403 for (i=bestRun; i < *size-3; i+=2){
404 if(BitStream[i] == 1 && (BitStream[i+1] == 0)){
405 BitStream[bitnum++]=invert;
406 } else if((BitStream[i] == 0) && BitStream[i+1] == 1){
407 BitStream[bitnum++]=invert^1;
408 } else {
409 BitStream[bitnum++]=7;
410 }
411 if(bitnum>MaxBits) break;
412 }
413 *size=bitnum;
414 return bestErr;
415 }
416
417 uint32_t manchesterEncode2Bytes(uint16_t datain) {
418 uint32_t output = 0;
419 uint8_t curBit = 0;
420 for (uint8_t i=0; i<16; i++) {
421 curBit = (datain >> (15-i) & 1);
422 output |= (1<<(((15-i)*2)+curBit));
423 }
424 return output;
425 }
426
427 //by marshmellow
428 //encode binary data into binary manchester
429 int ManchesterEncode(uint8_t *BitStream, size_t size)
430 {
431 size_t modIdx=20000, i=0;
432 if (size>modIdx) return -1;
433 for (size_t idx=0; idx < size; idx++){
434 BitStream[idx+modIdx++] = BitStream[idx];
435 BitStream[idx+modIdx++] = BitStream[idx]^1;
436 }
437 for (; i<(size*2); i++){
438 BitStream[i] = BitStream[i+20000];
439 }
440 return i;
441 }
442
443 //by marshmellow
444 //take 01 or 10 = 1 and 11 or 00 = 0
445 //check for phase errors - should never have 111 or 000 should be 01001011 or 10110100 for 1010
446 //decodes biphase or if inverted it is AKA conditional dephase encoding AKA differential manchester encoding
447 int BiphaseRawDecode(uint8_t *BitStream, size_t *size, int offset, int invert)
448 {
449 uint16_t bitnum = 0;
450 uint16_t errCnt = 0;
451 size_t i = offset;
452 uint16_t MaxBits=512;
453 //if not enough samples - error
454 if (*size < 51) return -1;
455 //check for phase change faults - skip one sample if faulty
456 uint8_t offsetA = 1, offsetB = 1;
457 for (; i<48; i+=2){
458 if (BitStream[i+1]==BitStream[i+2]) offsetA=0;
459 if (BitStream[i+2]==BitStream[i+3]) offsetB=0;
460 }
461 if (!offsetA && offsetB) offset++;
462 for (i=offset; i<*size-3; i+=2){
463 //check for phase error
464 if (BitStream[i+1]==BitStream[i+2]) {
465 BitStream[bitnum++]=7;
466 errCnt++;
467 }
468 if((BitStream[i]==1 && BitStream[i+1]==0) || (BitStream[i]==0 && BitStream[i+1]==1)){
469 BitStream[bitnum++]=1^invert;
470 } else if((BitStream[i]==0 && BitStream[i+1]==0) || (BitStream[i]==1 && BitStream[i+1]==1)){
471 BitStream[bitnum++]=invert;
472 } else {
473 BitStream[bitnum++]=7;
474 errCnt++;
475 }
476 if(bitnum>MaxBits) break;
477 }
478 *size=bitnum;
479 return errCnt;
480 }
481
482 // by marshmellow
483 // demod gProxIIDemod
484 // error returns as -x
485 // success returns start position in BitStream
486 // BitStream must contain previously askrawdemod and biphasedemoded data
487 int gProxII_Demod(uint8_t BitStream[], size_t *size)
488 {
489 size_t startIdx=0;
490 uint8_t preamble[] = {1,1,1,1,1,0};
491
492 uint8_t errChk = preambleSearch(BitStream, preamble, sizeof(preamble), size, &startIdx);
493 if (errChk == 0) return -3; //preamble not found
494 if (*size != 96) return -2; //should have found 96 bits
495 //check first 6 spacer bits to verify format
496 if (!BitStream[startIdx+5] && !BitStream[startIdx+10] && !BitStream[startIdx+15] && !BitStream[startIdx+20] && !BitStream[startIdx+25] && !BitStream[startIdx+30]){
497 //confirmed proper separator bits found
498 //return start position
499 return (int) startIdx;
500 }
501 return -5; //spacer bits not found - not a valid gproxII
502 }
503
504 //translate wave to 11111100000 (1 for each short wave [higher freq] 0 for each long wave [lower freq])
505 size_t fsk_wave_demod(uint8_t * dest, size_t size, uint8_t fchigh, uint8_t fclow)
506 {
507 size_t last_transition = 0;
508 size_t idx = 1;
509 if (fchigh==0) fchigh=10;
510 if (fclow==0) fclow=8;
511 //set the threshold close to 0 (graph) or 128 std to avoid static
512 uint8_t threshold_value = 123;
513 size_t preLastSample = 0;
514 size_t LastSample = 0;
515 size_t currSample = 0;
516 if ( size < 1024 ) return 0; // not enough samples
517
518 //find start of modulating data in trace
519 idx = findModStart(dest, size, threshold_value, fchigh);
520
521 // Need to threshold first sample
522 if(dest[idx] < threshold_value) dest[0] = 0;
523 else dest[0] = 1;
524 idx++;
525
526 size_t numBits = 0;
527 // count cycles between consecutive lo-hi transitions, there should be either 8 (fc/8)
528 // or 10 (fc/10) cycles but in practice due to noise etc we may end up with anywhere
529 // between 7 to 11 cycles so fuzz it by treat anything <9 as 8 and anything else as 10
530 // (could also be fc/5 && fc/7 for fsk1 = 4-9)
531 for(; idx < size-20; idx++) {
532 // threshold current value
533
534 if (dest[idx] < threshold_value) dest[idx] = 0;
535 else dest[idx] = 1;
536
537 // Check for 0->1 transition
538 if (dest[idx-1] < dest[idx]) {
539 preLastSample = LastSample;
540 LastSample = currSample;
541 currSample = idx-last_transition;
542 if (currSample < (fclow-2)) { //0-5 = garbage noise (or 0-3)
543 //do nothing with extra garbage
544 } else if (currSample < (fchigh-1)) { //6-8 = 8 sample waves (or 3-6 = 5)
545 //correct previous 9 wave surrounded by 8 waves (or 6 surrounded by 5)
546 if (LastSample > (fchigh-2) && (preLastSample < (fchigh-1))){
547 dest[numBits-1]=1;
548 }
549 dest[numBits++]=1;
550
551 } else if (currSample > (fchigh+1) && numBits < 3) { //12 + and first two bit = unusable garbage
552 //do nothing with beginning garbage and reset.. should be rare..
553 numBits = 0;
554 } else if (currSample == (fclow+1) && LastSample == (fclow-1)) { // had a 7 then a 9 should be two 8's (or 4 then a 6 should be two 5's)
555 dest[numBits++]=1;
556 } else { //9+ = 10 sample waves (or 6+ = 7)
557 dest[numBits++]=0;
558 }
559 last_transition = idx;
560 }
561 }
562 return numBits; //Actually, it returns the number of bytes, but each byte represents a bit: 1 or 0
563 }
564
565 //translate 11111100000 to 10
566 //rfLen = clock, fchigh = larger field clock, fclow = smaller field clock
567 size_t aggregate_bits(uint8_t *dest, size_t size, uint8_t rfLen,
568 uint8_t invert, uint8_t fchigh, uint8_t fclow)
569 {
570 uint8_t lastval=dest[0];
571 size_t idx=0;
572 size_t numBits=0;
573 uint32_t n=1;
574 for( idx=1; idx < size; idx++) {
575 n++;
576 if (dest[idx]==lastval) continue; //skip until we hit a transition
577
578 //find out how many bits (n) we collected
579 //if lastval was 1, we have a 1->0 crossing
580 if (dest[idx-1]==1) {
581 n = (n * fclow + rfLen/2) / rfLen;
582 } else {// 0->1 crossing
583 n = (n * fchigh + rfLen/2) / rfLen;
584 }
585 if (n == 0) n = 1;
586
587 //add to our destination the bits we collected
588 memset(dest+numBits, dest[idx-1]^invert , n);
589 numBits += n;
590 n=0;
591 lastval=dest[idx];
592 }//end for
593 // if valid extra bits at the end were all the same frequency - add them in
594 if (n > rfLen/fchigh) {
595 if (dest[idx-2]==1) {
596 n = (n * fclow + rfLen/2) / rfLen;
597 } else {
598 n = (n * fchigh + rfLen/2) / rfLen;
599 }
600 memset(dest+numBits, dest[idx-1]^invert , n);
601 numBits += n;
602 }
603 return numBits;
604 }
605
606 //by marshmellow (from holiman's base)
607 // full fsk demod from GraphBuffer wave to decoded 1s and 0s (no mandemod)
608 int fskdemod(uint8_t *dest, size_t size, uint8_t rfLen, uint8_t invert, uint8_t fchigh, uint8_t fclow)
609 {
610 // FSK demodulator
611 size = fsk_wave_demod(dest, size, fchigh, fclow);
612 size = aggregate_bits(dest, size, rfLen, invert, fchigh, fclow);
613 return size;
614 }
615
616 // loop to get raw HID waveform then FSK demodulate the TAG ID from it
617 int HIDdemodFSK(uint8_t *dest, size_t *size, uint32_t *hi2, uint32_t *hi, uint32_t *lo)
618 {
619 if (justNoise(dest, *size)) return -1;
620
621 size_t numStart=0, size2=*size, startIdx=0;
622 // FSK demodulator
623 *size = fskdemod(dest, size2,50,1,10,8); //fsk2a
624 if (*size < 96*2) return -2;
625 // 00011101 bit pattern represent start of frame, 01 pattern represents a 0 and 10 represents a 1
626 uint8_t preamble[] = {0,0,0,1,1,1,0,1};
627 // find bitstring in array
628 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
629 if (errChk == 0) return -3; //preamble not found
630
631 numStart = startIdx + sizeof(preamble);
632 // final loop, go over previously decoded FSK data and manchester decode into usable tag ID
633 for (size_t idx = numStart; (idx-numStart) < *size - sizeof(preamble); idx+=2){
634 if (dest[idx] == dest[idx+1]){
635 return -4; //not manchester data
636 }
637 *hi2 = (*hi2<<1)|(*hi>>31);
638 *hi = (*hi<<1)|(*lo>>31);
639 //Then, shift in a 0 or one into low
640 if (dest[idx] && !dest[idx+1]) // 1 0
641 *lo=(*lo<<1)|1;
642 else // 0 1
643 *lo=(*lo<<1)|0;
644 }
645 return (int)startIdx;
646 }
647
648 // loop to get raw paradox waveform then FSK demodulate the TAG ID from it
649 int ParadoxdemodFSK(uint8_t *dest, size_t *size, uint32_t *hi2, uint32_t *hi, uint32_t *lo)
650 {
651 if (justNoise(dest, *size)) return -1;
652
653 size_t numStart=0, size2=*size, startIdx=0;
654 // FSK demodulator
655 *size = fskdemod(dest, size2,50,1,10,8); //fsk2a
656 if (*size < 96) return -2;
657
658 // 00001111 bit pattern represent start of frame, 01 pattern represents a 0 and 10 represents a 1
659 uint8_t preamble[] = {0,0,0,0,1,1,1,1};
660
661 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
662 if (errChk == 0) return -3; //preamble not found
663
664 numStart = startIdx + sizeof(preamble);
665 // final loop, go over previously decoded FSK data and manchester decode into usable tag ID
666 for (size_t idx = numStart; (idx-numStart) < *size - sizeof(preamble); idx+=2){
667 if (dest[idx] == dest[idx+1])
668 return -4; //not manchester data
669 *hi2 = (*hi2<<1)|(*hi>>31);
670 *hi = (*hi<<1)|(*lo>>31);
671 //Then, shift in a 0 or one into low
672 if (dest[idx] && !dest[idx+1]) // 1 0
673 *lo=(*lo<<1)|1;
674 else // 0 1
675 *lo=(*lo<<1)|0;
676 }
677 return (int)startIdx;
678 }
679
680 int IOdemodFSK(uint8_t *dest, size_t size)
681 {
682 if (justNoise(dest, size)) return -1;
683 //make sure buffer has data
684 if (size < 66*64) return -2;
685 // FSK demodulator
686 size = fskdemod(dest, size, 64, 1, 10, 8); // FSK2a RF/64
687 if (size < 65) return -3; //did we get a good demod?
688 //Index map
689 //0 10 20 30 40 50 60
690 //| | | | | | |
691 //01234567 8 90123456 7 89012345 6 78901234 5 67890123 4 56789012 3 45678901 23
692 //-----------------------------------------------------------------------------
693 //00000000 0 11110000 1 facility 1 version* 1 code*one 1 code*two 1 ???????? 11
694 //
695 //XSF(version)facility:codeone+codetwo
696 //Handle the data
697 size_t startIdx = 0;
698 uint8_t preamble[] = {0,0,0,0,0,0,0,0,0,1};
699 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), &size, &startIdx);
700 if (errChk == 0) return -4; //preamble not found
701
702 if (!dest[startIdx+8] && dest[startIdx+17]==1 && dest[startIdx+26]==1 && dest[startIdx+35]==1 && dest[startIdx+44]==1 && dest[startIdx+53]==1){
703 //confirmed proper separator bits found
704 //return start position
705 return (int) startIdx;
706 }
707 return -5;
708 }
709
710 // by marshmellow
711 // find viking preamble 0xF200 in already demoded data
712 int VikingDemod_AM(uint8_t *dest, size_t *size) {
713 //make sure buffer has data
714 if (*size < 64*2) return -2;
715
716 size_t startIdx = 0;
717 uint8_t preamble[] = {1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
718 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
719 if (errChk == 0) return -4; //preamble not found
720 uint32_t checkCalc = bytebits_to_byte(dest+startIdx,8) ^ bytebits_to_byte(dest+startIdx+8,8) ^ bytebits_to_byte(dest+startIdx+16,8)
721 ^ bytebits_to_byte(dest+startIdx+24,8) ^ bytebits_to_byte(dest+startIdx+32,8) ^ bytebits_to_byte(dest+startIdx+40,8)
722 ^ bytebits_to_byte(dest+startIdx+48,8) ^ bytebits_to_byte(dest+startIdx+56,8);
723 if ( checkCalc != 0xA8 ) return -5;
724 if (*size != 64) return -6;
725 //return start position
726 return (int) startIdx;
727 }
728
729 // find presco preamble 0x10D in already demoded data
730 int PrescoDemod(uint8_t *dest, size_t *size) {
731 //make sure buffer has data
732 if (*size < 64*2) return -2;
733
734 size_t startIdx = 0;
735 uint8_t preamble[] = {1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0};
736 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
737 if (errChk == 0) return -4; //preamble not found
738 //return start position
739 return (int) startIdx;
740 }
741
742 // Ask/Biphase Demod then try to locate an ISO 11784/85 ID
743 // BitStream must contain previously askrawdemod and biphasedemoded data
744 int FDXBdemodBI(uint8_t *dest, size_t *size)
745 {
746 //make sure buffer has enough data
747 if (*size < 128) return -1;
748
749 size_t startIdx = 0;
750 uint8_t preamble[] = {0,0,0,0,0,0,0,0,0,0,1};
751
752 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
753 if (errChk == 0) return -2; //preamble not found
754 return (int)startIdx;
755 }
756
757 // by marshmellow
758 // FSK Demod then try to locate an AWID ID
759 int AWIDdemodFSK(uint8_t *dest, size_t *size)
760 {
761 //make sure buffer has enough data
762 if (*size < 96*50) return -1;
763
764 if (justNoise(dest, *size)) return -2;
765
766 // FSK demodulator
767 *size = fskdemod(dest, *size, 50, 1, 10, 8); // fsk2a RF/50
768 if (*size < 96) return -3; //did we get a good demod?
769
770 uint8_t preamble[] = {0,0,0,0,0,0,0,1};
771 size_t startIdx = 0;
772 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
773 if (errChk == 0) return -4; //preamble not found
774 if (*size != 96) return -5;
775 return (int)startIdx;
776 }
777
778 // by marshmellow
779 // FSK Demod then try to locate a Farpointe Data (pyramid) ID
780 int PyramiddemodFSK(uint8_t *dest, size_t *size)
781 {
782 //make sure buffer has data
783 if (*size < 128*50) return -5;
784
785 //test samples are not just noise
786 if (justNoise(dest, *size)) return -1;
787
788 // FSK demodulator
789 *size = fskdemod(dest, *size, 50, 1, 10, 8); // fsk2a RF/50
790 if (*size < 128) return -2; //did we get a good demod?
791
792 uint8_t preamble[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
793 size_t startIdx = 0;
794 uint8_t errChk = preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx);
795 if (errChk == 0) return -4; //preamble not found
796 if (*size != 128) return -3;
797 return (int)startIdx;
798 }
799
800 // by marshmellow
801 // to detect a wave that has heavily clipped (clean) samples
802 uint8_t DetectCleanAskWave(uint8_t dest[], size_t size, uint8_t high, uint8_t low)
803 {
804 bool allArePeaks = true;
805 uint16_t cntPeaks=0;
806 size_t loopEnd = 512+160;
807 if (loopEnd > size) loopEnd = size;
808 for (size_t i=160; i<loopEnd; i++){
809 if (dest[i]>low && dest[i]<high)
810 allArePeaks = false;
811 else
812 cntPeaks++;
813 }
814 if (!allArePeaks){
815 if (cntPeaks > 300) return true;
816 }
817 return allArePeaks;
818 }
819 // by marshmellow
820 // to help detect clocks on heavily clipped samples
821 // based on count of low to low
822 int DetectStrongAskClock(uint8_t dest[], size_t size, uint8_t high, uint8_t low, int *clock) {
823 uint8_t fndClk[] = {8,16,32,40,50,64,128};
824 size_t startwave;
825 size_t i = 100;
826 size_t minClk = 255;
827 int shortestWaveIdx = 0;
828 // get to first full low to prime loop and skip incomplete first pulse
829 while ((dest[i] < high) && (i < size))
830 ++i;
831 while ((dest[i] > low) && (i < size))
832 ++i;
833
834 // loop through all samples
835 while (i < size) {
836 // measure from low to low
837 while ((dest[i] > low) && (i < size))
838 ++i;
839 startwave = i;
840 while ((dest[i] < high) && (i < size))
841 ++i;
842 while ((dest[i] > low) && (i < size))
843 ++i;
844 //get minimum measured distance
845 if (i-startwave < minClk && i < size) {
846 minClk = i - startwave;
847 shortestWaveIdx = startwave;
848 }
849 }
850 // set clock
851 if (g_debugMode==2) prnt("DEBUG ASK: detectstrongASKclk smallest wave: %d",minClk);
852 for (uint8_t clkCnt = 0; clkCnt<7; clkCnt++) {
853 if (minClk >= fndClk[clkCnt]-(fndClk[clkCnt]/8) && minClk <= fndClk[clkCnt]+1) {
854 *clock = fndClk[clkCnt];
855 return shortestWaveIdx;
856 }
857 }
858 return 0;
859 }
860
861 // by marshmellow
862 // not perfect especially with lower clocks or VERY good antennas (heavy wave clipping)
863 // maybe somehow adjust peak trimming value based on samples to fix?
864 // return start index of best starting position for that clock and return clock (by reference)
865 int DetectASKClock(uint8_t dest[], size_t size, int *clock, int maxErr)
866 {
867 size_t i=1;
868 uint8_t clk[] = {255,8,16,32,40,50,64,100,128,255};
869 uint8_t clkEnd = 9;
870 uint8_t loopCnt = 255; //don't need to loop through entire array...
871 if (size <= loopCnt+60) return -1; //not enough samples
872 size -= 60; //sometimes there is a strange end wave - filter out this....
873 //if we already have a valid clock
874 uint8_t clockFnd=0;
875 for (;i<clkEnd;++i)
876 if (clk[i] == *clock) clockFnd = i;
877 //clock found but continue to find best startpos
878
879 //get high and low peak
880 int peak, low;
881 if (getHiLo(dest, loopCnt, &peak, &low, 75, 75) < 1) return -1;
882
883 //test for large clean peaks
884 if (!clockFnd){
885 if (DetectCleanAskWave(dest, size, peak, low)==1){
886 int ans = DetectStrongAskClock(dest, size, peak, low, clock);
887 if (g_debugMode==2) prnt("DEBUG ASK: detectaskclk Clean Ask Wave Detected: clk %i, ShortestWave: %i",clock, ans);
888 if (ans > 0) {
889 return ans; //return shortest wave start position
890 }
891 }
892 }
893 uint8_t ii;
894 uint8_t clkCnt, tol = 0;
895 uint16_t bestErr[]={1000,1000,1000,1000,1000,1000,1000,1000,1000};
896 uint8_t bestStart[]={0,0,0,0,0,0,0,0,0};
897 size_t errCnt = 0;
898 size_t arrLoc, loopEnd;
899
900 if (clockFnd>0) {
901 clkCnt = clockFnd;
902 clkEnd = clockFnd+1;
903 }
904 else clkCnt=1;
905
906 //test each valid clock from smallest to greatest to see which lines up
907 for(; clkCnt < clkEnd; clkCnt++){
908 if (clk[clkCnt] <= 32){
909 tol=1;
910 }else{
911 tol=0;
912 }
913 //if no errors allowed - keep start within the first clock
914 if (!maxErr && size > clk[clkCnt]*2 + tol && clk[clkCnt]<128) loopCnt=clk[clkCnt]*2;
915 bestErr[clkCnt]=1000;
916 //try lining up the peaks by moving starting point (try first few clocks)
917 for (ii=0; ii < loopCnt; ii++){
918 if (dest[ii] < peak && dest[ii] > low) continue;
919
920 errCnt=0;
921 // now that we have the first one lined up test rest of wave array
922 loopEnd = ((size-ii-tol) / clk[clkCnt]) - 1;
923 for (i=0; i < loopEnd; ++i){
924 arrLoc = ii + (i * clk[clkCnt]);
925 if (dest[arrLoc] >= peak || dest[arrLoc] <= low){
926 }else if (dest[arrLoc-tol] >= peak || dest[arrLoc-tol] <= low){
927 }else if (dest[arrLoc+tol] >= peak || dest[arrLoc+tol] <= low){
928 }else{ //error no peak detected
929 errCnt++;
930 }
931 }
932 //if we found no errors then we can stop here and a low clock (common clocks)
933 // this is correct one - return this clock
934 if (g_debugMode == 2) prnt("DEBUG ASK: clk %d, err %d, startpos %d, endpos %d",clk[clkCnt],errCnt,ii,i);
935 if(errCnt==0 && clkCnt<7) {
936 if (!clockFnd) *clock = clk[clkCnt];
937 return ii;
938 }
939 //if we found errors see if it is lowest so far and save it as best run
940 if(errCnt<bestErr[clkCnt]){
941 bestErr[clkCnt]=errCnt;
942 bestStart[clkCnt]=ii;
943 }
944 }
945 }
946 uint8_t iii;
947 uint8_t best=0;
948 for (iii=1; iii<clkEnd; ++iii){
949 if (bestErr[iii] < bestErr[best]){
950 if (bestErr[iii] == 0) bestErr[iii]=1;
951 // current best bit to error ratio vs new bit to error ratio
952 if ( (size/clk[best])/bestErr[best] < (size/clk[iii])/bestErr[iii] ){
953 best = iii;
954 }
955 }
956 if (g_debugMode == 2) prnt("DEBUG ASK: clk %d, # Errors %d, Current Best Clk %d, bestStart %d",clk[iii],bestErr[iii],clk[best],bestStart[best]);
957 }
958 if (!clockFnd) *clock = clk[best];
959 return bestStart[best];
960 }
961
962
963 int DetectPSKClock(uint8_t dest[], size_t size, int clock) {
964 int firstPhaseShift = 0;
965 return DetectPSKClock_ext(dest, size, clock, &firstPhaseShift);
966 }
967
968 //by marshmellow
969 //detect psk clock by reading each phase shift
970 // a phase shift is determined by measuring the sample length of each wave
971 int DetectPSKClock_ext(uint8_t dest[], size_t size, int clock, int *firstPhaseShift) {
972 uint8_t clk[]={255,16,32,40,50,64,100,128,255}; //255 is not a valid clock
973 uint16_t loopCnt = 4096; //don't need to loop through entire array...
974 if (size == 0) return 0;
975 if (size<loopCnt) loopCnt = size-20;
976
977 //if we already have a valid clock quit
978 size_t i=1;
979 for (; i < 8; ++i)
980 if (clk[i] == clock) return clock;
981
982 size_t waveStart=0, waveEnd=0, firstFullWave=0, lastClkBit=0;
983 uint8_t clkCnt, fc=0, fullWaveLen=0, tol=1;
984 uint16_t peakcnt=0, errCnt=0, waveLenCnt=0;
985 uint16_t bestErr[]={1000,1000,1000,1000,1000,1000,1000,1000,1000};
986 uint16_t peaksdet[]={0,0,0,0,0,0,0,0,0};
987 fc = countFC(dest, size, 0);
988 if (fc!=2 && fc!=4 && fc!=8) return -1;
989 if (g_debugMode==2) prnt("DEBUG PSK: FC: %d",fc);
990
991 //find first full wave
992 for (i=160; i<loopCnt; i++){
993 if (dest[i] < dest[i+1] && dest[i+1] >= dest[i+2]){
994 if (waveStart == 0) {
995 waveStart = i+1;
996 //prnt("DEBUG: waveStart: %d",waveStart);
997 } else {
998 waveEnd = i+1;
999 //prnt("DEBUG: waveEnd: %d",waveEnd);
1000 waveLenCnt = waveEnd-waveStart;
1001 if (waveLenCnt > fc){
1002 firstFullWave = waveStart;
1003 fullWaveLen=waveLenCnt;
1004 break;
1005 }
1006 waveStart=0;
1007 }
1008 }
1009 }
1010 *firstPhaseShift = firstFullWave;
1011 if (g_debugMode ==2) prnt("DEBUG PSK: firstFullWave: %d, waveLen: %d",firstFullWave,fullWaveLen);
1012 //test each valid clock from greatest to smallest to see which lines up
1013 for(clkCnt=7; clkCnt >= 1 ; clkCnt--){
1014 lastClkBit = firstFullWave; //set end of wave as clock align
1015 waveStart = 0;
1016 errCnt=0;
1017 peakcnt=0;
1018 if (g_debugMode == 2) prnt("DEBUG PSK: clk: %d, lastClkBit: %d",clk[clkCnt],lastClkBit);
1019
1020 for (i = firstFullWave+fullWaveLen-1; i < loopCnt-2; i++){
1021 //top edge of wave = start of new wave
1022 if (dest[i] < dest[i+1] && dest[i+1] >= dest[i+2]){
1023 if (waveStart == 0) {
1024 waveStart = i+1;
1025 waveLenCnt=0;
1026 } else { //waveEnd
1027 waveEnd = i+1;
1028 waveLenCnt = waveEnd-waveStart;
1029 if (waveLenCnt > fc){
1030 //if this wave is a phase shift
1031 if (g_debugMode == 2) prnt("DEBUG PSK: phase shift at: %d, len: %d, nextClk: %d, i: %d, fc: %d",waveStart,waveLenCnt,lastClkBit+clk[clkCnt]-tol,i+1,fc);
1032 if (i+1 >= lastClkBit + clk[clkCnt] - tol){ //should be a clock bit
1033 peakcnt++;
1034 lastClkBit+=clk[clkCnt];
1035 } else if (i<lastClkBit+8){
1036 //noise after a phase shift - ignore
1037 } else { //phase shift before supposed to based on clock
1038 errCnt++;
1039 }
1040 } else if (i+1 > lastClkBit + clk[clkCnt] + tol + fc){
1041 lastClkBit+=clk[clkCnt]; //no phase shift but clock bit
1042 }
1043 waveStart=i+1;
1044 }
1045 }
1046 }
1047 if (errCnt == 0){
1048 return clk[clkCnt];
1049 }
1050 if (errCnt <= bestErr[clkCnt]) bestErr[clkCnt]=errCnt;
1051 if (peakcnt > peaksdet[clkCnt]) peaksdet[clkCnt]=peakcnt;
1052 }
1053 //all tested with errors
1054 //return the highest clk with the most peaks found
1055 uint8_t best=7;
1056 for (i=7; i>=1; i--){
1057 if (peaksdet[i] > peaksdet[best]) {
1058 best = i;
1059 }
1060 if (g_debugMode == 2) prnt("DEBUG PSK: Clk: %d, peaks: %d, errs: %d, bestClk: %d",clk[i],peaksdet[i],bestErr[i],clk[best]);
1061 }
1062 return clk[best];
1063 }
1064
1065 int DetectStrongNRZClk(uint8_t *dest, size_t size, int peak, int low){
1066 //find shortest transition from high to low
1067 size_t i = 0;
1068 size_t transition1 = 0;
1069 int lowestTransition = 255;
1070 bool lastWasHigh = false;
1071
1072 //find first valid beginning of a high or low wave
1073 while ((dest[i] >= peak || dest[i] <= low) && (i < size))
1074 ++i;
1075 while ((dest[i] < peak && dest[i] > low) && (i < size))
1076 ++i;
1077 lastWasHigh = (dest[i] >= peak);
1078
1079 if (i==size) return 0;
1080 transition1 = i;
1081
1082 for (;i < size; i++) {
1083 if ((dest[i] >= peak && !lastWasHigh) || (dest[i] <= low && lastWasHigh)) {
1084 lastWasHigh = (dest[i] >= peak);
1085 if (i-transition1 < lowestTransition) lowestTransition = i-transition1;
1086 transition1 = i;
1087 }
1088 }
1089 if (lowestTransition == 255) lowestTransition = 0;
1090 if (g_debugMode==2) prnt("DEBUG NRZ: detectstrongNRZclk smallest wave: %d",lowestTransition);
1091 return lowestTransition;
1092 }
1093
1094 int DetectNRZClock(uint8_t dest[], size_t size, int clock) {
1095 size_t bestStart=0;
1096 return DetectNRZClock_ext(dest, size, clock, &bestStart);
1097 }
1098
1099
1100 //by marshmellow
1101 //detect nrz clock by reading #peaks vs no peaks(or errors)
1102 int DetectNRZClock_ext(uint8_t dest[], size_t size, int clock, size_t *clockStartIdx) {
1103 size_t i=0;
1104 uint8_t clk[]={8,16,32,40,50,64,100,128,255};
1105 size_t loopCnt = 4096; //don't need to loop through entire array...
1106 if (size == 0) return 0;
1107 if (size<loopCnt) loopCnt = size-20;
1108 //if we already have a valid clock quit
1109 for (; i < 8; ++i)
1110 if (clk[i] == clock) return clock;
1111
1112 //get high and low peak
1113 int peak, low;
1114 if (getHiLo(dest, loopCnt, &peak, &low, 75, 75) < 1) return 0;
1115
1116 int lowestTransition = DetectStrongNRZClk(dest, size-20, peak, low);
1117 size_t ii;
1118 uint8_t clkCnt;
1119 uint8_t tol = 0;
1120 uint16_t smplCnt = 0;
1121 int16_t peakcnt = 0;
1122 int16_t peaksdet[] = {0,0,0,0,0,0,0,0};
1123 uint16_t maxPeak = 255;
1124 bool firstpeak = false;
1125 //test for large clipped waves
1126 for (i=0; i<loopCnt; i++){
1127 if (dest[i] >= peak || dest[i] <= low){
1128 if (!firstpeak) continue;
1129 smplCnt++;
1130 } else {
1131 firstpeak=true;
1132 if (smplCnt > 6 ){
1133 if (maxPeak > smplCnt){
1134 maxPeak = smplCnt;
1135 //prnt("maxPk: %d",maxPeak);
1136 }
1137 peakcnt++;
1138 //prnt("maxPk: %d, smplCnt: %d, peakcnt: %d",maxPeak,smplCnt,peakcnt);
1139 smplCnt=0;
1140 }
1141 }
1142 }
1143 bool errBitHigh = 0;
1144 bool bitHigh = 0;
1145 uint8_t ignoreCnt = 0;
1146 uint8_t ignoreWindow = 4;
1147 bool lastPeakHigh = 0;
1148 int lastBit = 0;
1149 size_t bestStart[]={0,0,0,0,0,0,0,0,0};
1150 peakcnt=0;
1151 //test each valid clock from smallest to greatest to see which lines up
1152 for(clkCnt=0; clkCnt < 8; ++clkCnt){
1153 //ignore clocks smaller than smallest peak
1154 if (clk[clkCnt] < maxPeak - (clk[clkCnt]/4)) continue;
1155 //try lining up the peaks by moving starting point (try first 256)
1156 for (ii=20; ii < loopCnt; ++ii){
1157 if ((dest[ii] >= peak) || (dest[ii] <= low)){
1158 peakcnt = 0;
1159 bitHigh = false;
1160 ignoreCnt = 0;
1161 lastBit = ii-clk[clkCnt];
1162 //loop through to see if this start location works
1163 for (i = ii; i < size-20; ++i) {
1164 //if we are at a clock bit
1165 if ((i >= lastBit + clk[clkCnt] - tol) && (i <= lastBit + clk[clkCnt] + tol)) {
1166 //test high/low
1167 if (dest[i] >= peak || dest[i] <= low) {
1168 //if same peak don't count it
1169 if ((dest[i] >= peak && !lastPeakHigh) || (dest[i] <= low && lastPeakHigh)) {
1170 peakcnt++;
1171 }
1172 lastPeakHigh = (dest[i] >= peak);
1173 bitHigh = true;
1174 errBitHigh = false;
1175 ignoreCnt = ignoreWindow;
1176 lastBit += clk[clkCnt];
1177 } else if (i == lastBit + clk[clkCnt] + tol) {
1178 lastBit += clk[clkCnt];
1179 }
1180 //else if not a clock bit and no peaks
1181 } else if (dest[i] < peak && dest[i] > low){
1182 if (ignoreCnt==0){
1183 bitHigh=false;
1184 if (errBitHigh==true) peakcnt--;
1185 errBitHigh=false;
1186 } else {
1187 ignoreCnt--;
1188 }
1189 // else if not a clock bit but we have a peak
1190 } else if ((dest[i]>=peak || dest[i]<=low) && (!bitHigh)) {
1191 //error bar found no clock...
1192 errBitHigh=true;
1193 }
1194 }
1195 if(peakcnt>peaksdet[clkCnt]) {
1196 bestStart[clkCnt]=ii;
1197 peaksdet[clkCnt]=peakcnt;
1198 }
1199 }
1200 }
1201 }
1202 int iii=7;
1203 uint8_t best=0;
1204 for (iii=7; iii > 0; iii--){
1205 if ((peaksdet[iii] >= (peaksdet[best]-1)) && (peaksdet[iii] <= peaksdet[best]+1) && lowestTransition) {
1206 if (clk[iii] > (lowestTransition - (clk[iii]/8)) && clk[iii] < (lowestTransition + (clk[iii]/8))) {
1207 best = iii;
1208 }
1209 } else if (peaksdet[iii] > peaksdet[best]){
1210 best = iii;
1211 }
1212 if (g_debugMode==2) prnt("DEBUG NRZ: Clk: %d, peaks: %d, maxPeak: %d, bestClk: %d, lowestTrs: %d",clk[iii],peaksdet[iii],maxPeak, clk[best], lowestTransition);
1213 }
1214 *clockStartIdx = bestStart[best];
1215 return clk[best];
1216 }
1217
1218 // by marshmellow
1219 // convert psk1 demod to psk2 demod
1220 // only transition waves are 1s
1221 void psk1TOpsk2(uint8_t *BitStream, size_t size)
1222 {
1223 size_t i=1;
1224 uint8_t lastBit=BitStream[0];
1225 for (; i<size; i++){
1226 if (BitStream[i]==7){
1227 //ignore errors
1228 } else if (lastBit!=BitStream[i]){
1229 lastBit=BitStream[i];
1230 BitStream[i]=1;
1231 } else {
1232 BitStream[i]=0;
1233 }
1234 }
1235 return;
1236 }
1237
1238 // by marshmellow
1239 // convert psk2 demod to psk1 demod
1240 // from only transition waves are 1s to phase shifts change bit
1241 void psk2TOpsk1(uint8_t *BitStream, size_t size)
1242 {
1243 uint8_t phase=0;
1244 for (size_t i=0; i<size; i++){
1245 if (BitStream[i]==1){
1246 phase ^=1;
1247 }
1248 BitStream[i]=phase;
1249 }
1250 return;
1251 }
1252
1253 // redesigned by marshmellow adjusted from existing decode functions
1254 // indala id decoding - only tested on 26 bit tags, but attempted to make it work for more
1255 int indala26decode(uint8_t *bitStream, size_t *size, uint8_t *invert)
1256 {
1257 //26 bit 40134 format (don't know other formats)
1258 uint8_t preamble[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
1259 uint8_t preamble_i[] = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0};
1260 size_t startidx = 0;
1261 if (!preambleSearch(bitStream, preamble, sizeof(preamble), size, &startidx)){
1262 // if didn't find preamble try again inverting
1263 if (!preambleSearch(bitStream, preamble_i, sizeof(preamble_i), size, &startidx)) return -1;
1264 *invert ^= 1;
1265 }
1266 if (*size != 64 && *size != 224) return -2;
1267 if (*invert==1)
1268 for (size_t i = startidx; i < *size; i++)
1269 bitStream[i] ^= 1;
1270
1271 return (int) startidx;
1272 }
1273
1274 // by marshmellow - demodulate NRZ wave - requires a read with strong signal
1275 // peaks invert bit (high=1 low=0) each clock cycle = 1 bit determined by last peak
1276 int nrzRawDemod(uint8_t *dest, size_t *size, int *clk, int *invert){
1277 if (justNoise(dest, *size)) return -1;
1278 *clk = DetectNRZClock(dest, *size, *clk);
1279 if (*clk==0) return -2;
1280 size_t i, gLen = 4096;
1281 if (gLen>*size) gLen = *size-20;
1282 int high, low;
1283 if (getHiLo(dest, gLen, &high, &low, 75, 75) < 1) return -3; //25% fuzz on high 25% fuzz on low
1284
1285 uint8_t bit=0;
1286 //convert wave samples to 1's and 0's
1287 for(i=20; i < *size-20; i++){
1288 if (dest[i] >= high) bit = 1;
1289 if (dest[i] <= low) bit = 0;
1290 dest[i] = bit;
1291 }
1292 //now demod based on clock (rf/32 = 32 1's for one 1 bit, 32 0's for one 0 bit)
1293 size_t lastBit = 0;
1294 size_t numBits = 0;
1295 for(i=21; i < *size-20; i++) {
1296 //if transition detected or large number of same bits - store the passed bits
1297 if (dest[i] != dest[i-1] || (i-lastBit) == (10 * *clk)) {
1298 memset(dest+numBits, dest[i-1] ^ *invert, (i - lastBit + (*clk/4)) / *clk);
1299 numBits += (i - lastBit + (*clk/4)) / *clk;
1300 lastBit = i-1;
1301 }
1302 }
1303 *size = numBits;
1304 return 0;
1305 }
1306
1307 uint8_t detectFSKClk(uint8_t *BitStream, size_t size, uint8_t fcHigh, uint8_t fcLow) {
1308 int firstClockEdge = 0;
1309 return detectFSKClk_ext(BitStream, size, fcHigh, fcLow, &firstClockEdge);
1310 }
1311
1312 //by marshmellow
1313 //detects the bit clock for FSK given the high and low Field Clocks
1314 uint8_t detectFSKClk_ext(uint8_t *BitStream, size_t size, uint8_t fcHigh, uint8_t fcLow, int *firstClockEdge) {
1315 uint8_t clk[] = {8,16,32,40,50,64,100,128,0};
1316 uint16_t rfLens[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
1317 uint8_t rfCnts[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
1318 uint8_t rfLensFnd = 0;
1319 uint8_t lastFCcnt = 0;
1320 uint16_t fcCounter = 0;
1321 uint16_t rfCounter = 0;
1322 uint8_t firstBitFnd = 0;
1323 size_t i;
1324 if (size == 0) return 0;
1325
1326 uint8_t fcTol = ((fcHigh*100 - fcLow*100)/2 + 50)/100; //(uint8_t)(0.5+(float)(fcHigh-fcLow)/2);
1327 rfLensFnd=0;
1328 fcCounter=0;
1329 rfCounter=0;
1330 firstBitFnd=0;
1331 //PrintAndLog("DEBUG: fcTol: %d",fcTol);
1332 // prime i to first peak / up transition
1333 for (i = 160; i < size-20; i++)
1334 if (BitStream[i] > BitStream[i-1] && BitStream[i]>=BitStream[i+1])
1335 break;
1336
1337 for (; i < size-20; i++){
1338 fcCounter++;
1339 rfCounter++;
1340
1341 if (BitStream[i] <= BitStream[i-1] || BitStream[i] < BitStream[i+1])
1342 continue;
1343 // else new peak
1344 // if we got less than the small fc + tolerance then set it to the small fc
1345 // if it is inbetween set it to the last counter
1346 if (fcCounter < fcHigh && fcCounter > fcLow)
1347 fcCounter = lastFCcnt;
1348 else if (fcCounter < fcLow+fcTol)
1349 fcCounter = fcLow;
1350 else //set it to the large fc
1351 fcCounter = fcHigh;
1352
1353 //look for bit clock (rf/xx)
1354 if ((fcCounter < lastFCcnt || fcCounter > lastFCcnt)){
1355 //not the same size as the last wave - start of new bit sequence
1356 if (firstBitFnd > 1){ //skip first wave change - probably not a complete bit
1357 for (int ii=0; ii<15; ii++){
1358 if (rfLens[ii] >= (rfCounter-4) && rfLens[ii] <= (rfCounter+4)){
1359 rfCnts[ii]++;
1360 rfCounter = 0;
1361 break;
1362 }
1363 }
1364 if (rfCounter > 0 && rfLensFnd < 15){
1365 //PrintAndLog("DEBUG: rfCntr %d, fcCntr %d",rfCounter,fcCounter);
1366 rfCnts[rfLensFnd]++;
1367 rfLens[rfLensFnd++] = rfCounter;
1368 }
1369 } else {
1370 *firstClockEdge = i;
1371 firstBitFnd++;
1372 }
1373 rfCounter=0;
1374 lastFCcnt=fcCounter;
1375 }
1376 fcCounter=0;
1377 }
1378 uint8_t rfHighest=15, rfHighest2=15, rfHighest3=15;
1379
1380 for (i=0; i<15; i++){
1381 //get highest 2 RF values (might need to get more values to compare or compare all?)
1382 if (rfCnts[i]>rfCnts[rfHighest]){
1383 rfHighest3=rfHighest2;
1384 rfHighest2=rfHighest;
1385 rfHighest=i;
1386 } else if(rfCnts[i]>rfCnts[rfHighest2]){
1387 rfHighest3=rfHighest2;
1388 rfHighest2=i;
1389 } else if(rfCnts[i]>rfCnts[rfHighest3]){
1390 rfHighest3=i;
1391 }
1392 if (g_debugMode==2) prnt("DEBUG FSK: RF %d, cnts %d",rfLens[i], rfCnts[i]);
1393 }
1394 // set allowed clock remainder tolerance to be 1 large field clock length+1
1395 // we could have mistakenly made a 9 a 10 instead of an 8 or visa versa so rfLens could be 1 FC off
1396 uint8_t tol1 = fcHigh+1;
1397
1398 if (g_debugMode==2) prnt("DEBUG FSK: most counted rf values: 1 %d, 2 %d, 3 %d",rfLens[rfHighest],rfLens[rfHighest2],rfLens[rfHighest3]);
1399
1400 // loop to find the highest clock that has a remainder less than the tolerance
1401 // compare samples counted divided by
1402 // test 128 down to 32 (shouldn't be possible to have fc/10 & fc/8 and rf/16 or less)
1403 int ii=7;
1404 for (; ii>=2; ii--){
1405 if (rfLens[rfHighest] % clk[ii] < tol1 || rfLens[rfHighest] % clk[ii] > clk[ii]-tol1){
1406 if (rfLens[rfHighest2] % clk[ii] < tol1 || rfLens[rfHighest2] % clk[ii] > clk[ii]-tol1){
1407 if (rfLens[rfHighest3] % clk[ii] < tol1 || rfLens[rfHighest3] % clk[ii] > clk[ii]-tol1){
1408 if (g_debugMode==2) prnt("DEBUG FSK: clk %d divides into the 3 most rf values within tolerance",clk[ii]);
1409 break;
1410 }
1411 }
1412 }
1413 }
1414
1415 if (ii<2) return 0; // oops we went too far
1416
1417 return clk[ii];
1418 }
1419
1420 //by marshmellow
1421 //countFC is to detect the field clock lengths.
1422 //counts and returns the 2 most common wave lengths
1423 //mainly used for FSK field clock detection
1424 uint16_t countFC(uint8_t *BitStream, size_t size, uint8_t fskAdj)
1425 {
1426 uint8_t fcLens[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
1427 uint16_t fcCnts[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
1428 uint8_t fcLensFnd = 0;
1429 uint8_t lastFCcnt = 0;
1430 uint8_t fcCounter = 0;
1431 size_t i;
1432 if (size < 180) return 0;
1433
1434 // prime i to first up transition
1435 for (i = 160; i < size-20; i++)
1436 if (BitStream[i] > BitStream[i-1] && BitStream[i] >= BitStream[i+1])
1437 break;
1438
1439 for (; i < size-20; i++){
1440 if (BitStream[i] > BitStream[i-1] && BitStream[i] >= BitStream[i+1]){
1441 // new up transition
1442 fcCounter++;
1443 if (fskAdj){
1444 //if we had 5 and now have 9 then go back to 8 (for when we get a fc 9 instead of an 8)
1445 if (lastFCcnt==5 && fcCounter==9) fcCounter--;
1446 //if fc=9 or 4 add one (for when we get a fc 9 instead of 10 or a 4 instead of a 5)
1447 if ((fcCounter==9) || fcCounter==4) fcCounter++;
1448 // save last field clock count (fc/xx)
1449 lastFCcnt = fcCounter;
1450 }
1451 // find which fcLens to save it to:
1452 for (int ii=0; ii<15; ii++){
1453 if (fcLens[ii]==fcCounter){
1454 fcCnts[ii]++;
1455 fcCounter=0;
1456 break;
1457 }
1458 }
1459 if (fcCounter>0 && fcLensFnd<15){
1460 //add new fc length
1461 fcCnts[fcLensFnd]++;
1462 fcLens[fcLensFnd++]=fcCounter;
1463 }
1464 fcCounter=0;
1465 } else {
1466 // count sample
1467 fcCounter++;
1468 }
1469 }
1470
1471 uint8_t best1=14, best2=14, best3=14;
1472 uint16_t maxCnt1=0;
1473 // go through fclens and find which ones are bigest 2
1474 for (i=0; i<15; i++){
1475 // get the 3 best FC values
1476 if (fcCnts[i]>maxCnt1) {
1477 best3=best2;
1478 best2=best1;
1479 maxCnt1=fcCnts[i];
1480 best1=i;
1481 } else if(fcCnts[i]>fcCnts[best2]){
1482 best3=best2;
1483 best2=i;
1484 } else if(fcCnts[i]>fcCnts[best3]){
1485 best3=i;
1486 }
1487 if (g_debugMode==2) prnt("DEBUG countfc: FC %u, Cnt %u, best fc: %u, best2 fc: %u",fcLens[i],fcCnts[i],fcLens[best1],fcLens[best2]);
1488 }
1489 if (fcLens[best1]==0) return 0;
1490 uint8_t fcH=0, fcL=0;
1491 if (fcLens[best1]>fcLens[best2]){
1492 fcH=fcLens[best1];
1493 fcL=fcLens[best2];
1494 } else{
1495 fcH=fcLens[best2];
1496 fcL=fcLens[best1];
1497 }
1498 if ((size-180)/fcH/3 > fcCnts[best1]+fcCnts[best2]) {
1499 if (g_debugMode==2) prnt("DEBUG countfc: fc is too large: %u > %u. Not psk or fsk",(size-180)/fcH/3,fcCnts[best1]+fcCnts[best2]);
1500 return 0; //lots of waves not psk or fsk
1501 }
1502 // TODO: take top 3 answers and compare to known Field clocks to get top 2
1503
1504 uint16_t fcs = (((uint16_t)fcH)<<8) | fcL;
1505 if (fskAdj) return fcs;
1506 return fcLens[best1];
1507 }
1508
1509 //by marshmellow - demodulate PSK1 wave
1510 //uses wave lengths (# Samples)
1511 int pskRawDemod(uint8_t dest[], size_t *size, int *clock, int *invert)
1512 {
1513 if (size == 0) return -1;
1514 uint16_t loopCnt = 4096; //don't need to loop through entire array...
1515 if (*size<loopCnt) loopCnt = *size;
1516
1517 size_t numBits=0;
1518 uint8_t curPhase = *invert;
1519 size_t i=0, waveStart=1, waveEnd=0, firstFullWave=0, lastClkBit=0;
1520 uint16_t fc=0, fullWaveLen=0, tol=1;
1521 uint16_t errCnt=0, waveLenCnt=0, errCnt2=0;
1522 fc = countFC(dest, *size, 1);
1523 uint8_t fc2 = fc >> 8;
1524 if (fc2 == 10) return -1; //fsk found - quit
1525 fc = fc & 0xFF;
1526 if (fc!=2 && fc!=4 && fc!=8) return -1;
1527 //PrintAndLog("DEBUG: FC: %d",fc);
1528 *clock = DetectPSKClock(dest, *size, *clock);
1529 if (*clock == 0) return -1;
1530
1531 //find start of modulating data in trace
1532 uint8_t threshold_value = 123; //-5
1533 i = findModStart(dest, *size, threshold_value, fc);
1534
1535 //find first phase shift
1536 int avgWaveVal=0, lastAvgWaveVal=0;
1537 waveStart = i;
1538 for (; i<loopCnt; i++) {
1539 // find peak
1540 if (dest[i]+fc < dest[i+1] && dest[i+1] >= dest[i+2]){
1541 waveEnd = i+1;
1542 if (g_debugMode == 2) prnt("DEBUG PSK: waveEnd: %u, waveStart: %u",waveEnd, waveStart);
1543 waveLenCnt = waveEnd-waveStart;
1544 if (waveLenCnt > fc && waveStart > fc && !(waveLenCnt > fc+3)){ //not first peak and is a large wave but not out of whack
1545 lastAvgWaveVal = avgWaveVal/(waveLenCnt);
1546 firstFullWave = waveStart;
1547 fullWaveLen=waveLenCnt;
1548 //if average wave value is > graph 0 then it is an up wave or a 1 (could cause inverting)
1549 if (lastAvgWaveVal > threshold_value) curPhase ^= 1;
1550 break;
1551 }
1552 waveStart = i+1;
1553 avgWaveVal = 0;
1554 }
1555 avgWaveVal += dest[i+2];
1556 }
1557 if (firstFullWave == 0) {
1558 // no phase shift detected - could be all 1's or 0's - doesn't matter where we start
1559 // so skip a little to ensure we are past any Start Signal
1560 firstFullWave = 160;
1561 memset(dest, curPhase, firstFullWave / *clock);
1562 } else {
1563 memset(dest, curPhase^1, firstFullWave / *clock);
1564 }
1565 //advance bits
1566 numBits += (firstFullWave / *clock);
1567 //set start of wave as clock align
1568 lastClkBit = firstFullWave;
1569 if (g_debugMode==2) prnt("DEBUG PSK: firstFullWave: %u, waveLen: %u",firstFullWave,fullWaveLen);
1570 if (g_debugMode==2) prnt("DEBUG PSK: clk: %d, lastClkBit: %u, fc: %u", *clock, lastClkBit,(unsigned int) fc);
1571 waveStart = 0;
1572 dest[numBits++] = curPhase; //set first read bit
1573 for (i = firstFullWave + fullWaveLen - 1; i < *size-3; i++){
1574 //top edge of wave = start of new wave
1575 if (dest[i]+fc < dest[i+1] && dest[i+1] >= dest[i+2]){
1576 if (waveStart == 0) {
1577 waveStart = i+1;
1578 waveLenCnt = 0;
1579 avgWaveVal = dest[i+1];
1580 } else { //waveEnd
1581 waveEnd = i+1;
1582 waveLenCnt = waveEnd-waveStart;
1583 lastAvgWaveVal = avgWaveVal/waveLenCnt;
1584 if (waveLenCnt > fc){
1585 //PrintAndLog("DEBUG: avgWaveVal: %d, waveSum: %d",lastAvgWaveVal,avgWaveVal);
1586 //this wave is a phase shift
1587 //PrintAndLog("DEBUG: phase shift at: %d, len: %d, nextClk: %d, i: %d, fc: %d",waveStart,waveLenCnt,lastClkBit+*clock-tol,i+1,fc);
1588 if (i+1 >= lastClkBit + *clock - tol){ //should be a clock bit
1589 curPhase ^= 1;
1590 dest[numBits++] = curPhase;
1591 lastClkBit += *clock;
1592 } else if (i < lastClkBit+10+fc){
1593 //noise after a phase shift - ignore
1594 } else { //phase shift before supposed to based on clock
1595 errCnt++;
1596 dest[numBits++] = 7;
1597 }
1598 } else if (i+1 > lastClkBit + *clock + tol + fc){
1599 lastClkBit += *clock; //no phase shift but clock bit
1600 dest[numBits++] = curPhase;
1601 } else if (waveLenCnt < fc - 1) { //wave is smaller than field clock (shouldn't happen often)
1602 errCnt2++;
1603 if(errCnt2 > 101) return errCnt2;
1604 }
1605 avgWaveVal = 0;
1606 waveStart = i+1;
1607 }
1608 }
1609 avgWaveVal += dest[i+1];
1610 }
1611 *size = numBits;
1612 return errCnt;
1613 }
1614
1615 bool DetectST(uint8_t buffer[], size_t *size, int *foundclock) {
1616 size_t ststart = 0, stend = 0;
1617 return DetectST_ext(buffer, size, foundclock, &ststart, &stend);
1618 }
1619
1620 //by marshmellow
1621 //attempt to identify a Sequence Terminator in ASK modulated raw wave
1622 bool DetectST_ext(uint8_t buffer[], size_t *size, int *foundclock, size_t *ststart, size_t *stend) {
1623 size_t bufsize = *size;
1624 //need to loop through all samples and identify our clock, look for the ST pattern
1625 uint8_t fndClk[] = {8,16,32,40,50,64,128};
1626 int clk = 0;
1627 int tol = 0;
1628 int i, j, skip, start, end, low, high, minClk, waveStart;
1629 bool complete = false;
1630 int tmpbuff[bufsize / 32]; //guess rf/32 clock, if click is smaller we will only have room for a fraction of the samples captured
1631 int waveLen[bufsize / 32]; // if clock is larger then we waste memory in array size that is not needed...
1632 size_t testsize = (bufsize < 512) ? bufsize : 512;
1633 int phaseoff = 0;
1634 high = low = 128;
1635 memset(tmpbuff, 0, sizeof(tmpbuff));
1636
1637 if ( getHiLo(buffer, testsize, &high, &low, 80, 80) == -1 ) {
1638 if (g_debugMode==2) prnt("DEBUG STT: just noise detected - quitting");
1639 return false; //just noise
1640 }
1641 i = 0;
1642 j = 0;
1643 minClk = 255;
1644 // get to first full low to prime loop and skip incomplete first pulse
1645 while ((buffer[i] < high) && (i < bufsize))
1646 ++i;
1647 while ((buffer[i] > low) && (i < bufsize))
1648 ++i;
1649 skip = i;
1650
1651 // populate tmpbuff buffer with pulse lengths
1652 while (i < bufsize) {
1653 // measure from low to low
1654 while ((buffer[i] > low) && (i < bufsize))
1655 ++i;
1656 start= i;
1657 while ((buffer[i] < high) && (i < bufsize))
1658 ++i;
1659 //first high point for this wave
1660 waveStart = i;
1661 while ((buffer[i] > low) && (i < bufsize))
1662 ++i;
1663 if (j >= (bufsize/32)) {
1664 break;
1665 }
1666 waveLen[j] = i - waveStart; //first high to first low
1667 tmpbuff[j++] = i - start;
1668 if (i-start < minClk && i < bufsize) {
1669 minClk = i - start;
1670 }
1671 }
1672 // set clock - might be able to get this externally and remove this work...
1673 if (!clk) {
1674 for (uint8_t clkCnt = 0; clkCnt<7; clkCnt++) {
1675 tol = fndClk[clkCnt]/8;
1676 if (minClk >= fndClk[clkCnt]-tol && minClk <= fndClk[clkCnt]+1) {
1677 clk=fndClk[clkCnt];
1678 break;
1679 }
1680 }
1681 // clock not found - ERROR
1682 if (!clk) {
1683 if (g_debugMode==2) prnt("DEBUG STT: clock not found - quitting");
1684 return false;
1685 }
1686 } else tol = clk/8;
1687
1688 *foundclock = clk;
1689
1690 // look for Sequence Terminator - should be pulses of clk*(1 or 1.5), clk*2, clk*(1.5 or 2)
1691 start = -1;
1692 for (i = 0; i < j - 4; ++i) {
1693 skip += tmpbuff[i];
1694 if (tmpbuff[i] >= clk*1-tol && tmpbuff[i] <= (clk*2)+tol && waveLen[i] < clk+tol) { //1 to 2 clocks depending on 2 bits prior
1695 if (tmpbuff[i+1] >= clk*2-tol && tmpbuff[i+1] <= clk*2+tol && waveLen[i+1] > clk*3/2-tol) { //2 clocks and wave size is 1 1/2
1696 if (tmpbuff[i+2] >= (clk*3)/2-tol && tmpbuff[i+2] <= clk*2+tol && waveLen[i+2] > clk-tol) { //1 1/2 to 2 clocks and at least one full clock wave
1697 if (tmpbuff[i+3] >= clk*1-tol && tmpbuff[i+3] <= clk*2+tol) { //1 to 2 clocks for end of ST + first bit
1698 start = i + 3;
1699 break;
1700 }
1701 }
1702 }
1703 }
1704 }
1705 // first ST not found - ERROR
1706 if (start < 0) {
1707 if (g_debugMode==2) prnt("DEBUG STT: first STT not found - quitting");
1708 return false;
1709 } else {
1710 if (g_debugMode==2) prnt("DEBUG STT: first STT found at: %d, j=%d",start, j);
1711 }
1712 if (waveLen[i+2] > clk*1+tol)
1713 phaseoff = 0;
1714 else
1715 phaseoff = clk/2;
1716
1717 // skip over the remainder of ST
1718 skip += clk*7/2; //3.5 clocks from tmpbuff[i] = end of st - also aligns for ending point
1719
1720 // now do it again to find the end
1721 end = skip;
1722 for (i += 3; i < j - 4; ++i) {
1723 end += tmpbuff[i];
1724 if (tmpbuff[i] >= clk*1-tol && tmpbuff[i] <= (clk*2)+tol && waveLen[i] < clk+tol) { //1 to 2 clocks depending on 2 bits prior
1725 if (tmpbuff[i+1] >= clk*2-tol && tmpbuff[i+1] <= clk*2+tol && waveLen[i+1] > clk*3/2-tol) { //2 clocks and wave size is 1 1/2
1726 if (tmpbuff[i+2] >= (clk*3)/2-tol && tmpbuff[i+2] <= clk*2+tol && waveLen[i+2] > clk-tol) { //1 1/2 to 2 clocks and at least one full clock wave
1727 if (tmpbuff[i+3] >= clk*1-tol && tmpbuff[i+3] <= clk*2+tol) { //1 to 2 clocks for end of ST + first bit
1728 complete = true;
1729 break;
1730 }
1731 }
1732 }
1733 }
1734 }
1735 end -= phaseoff;
1736 //didn't find second ST - ERROR
1737 if (!complete) {
1738 if (g_debugMode==2) prnt("DEBUG STT: second STT not found - quitting");
1739 return false;
1740 }
1741 if (g_debugMode==2) prnt("DEBUG STT: start of data: %d end of data: %d, datalen: %d, clk: %d, bits: %d, phaseoff: %d", skip, end, end-skip, clk, (end-skip)/clk, phaseoff);
1742 //now begin to trim out ST so we can use normal demod cmds
1743 start = skip;
1744 size_t datalen = end - start;
1745 // check validity of datalen (should be even clock increments) - use a tolerance of up to 1/8th a clock
1746 if ( clk - (datalen % clk) <= clk/8) {
1747 // padd the amount off - could be problematic... but shouldn't happen often
1748 datalen += clk - (datalen % clk);
1749 } else if ( (datalen % clk) <= clk/8 ) {
1750 // padd the amount off - could be problematic... but shouldn't happen often
1751 datalen -= datalen % clk;
1752 } else {
1753 if (g_debugMode==2) prnt("DEBUG STT: datalen not divisible by clk: %u %% %d = %d - quitting", datalen, clk, datalen % clk);
1754 return false;
1755 }
1756 // if datalen is less than one t55xx block - ERROR
1757 if (datalen/clk < 8*4) {
1758 if (g_debugMode==2) prnt("DEBUG STT: datalen is less than 1 full t55xx block - quitting");
1759 return false;
1760 }
1761 size_t dataloc = start;
1762 if (buffer[dataloc-(clk*4)-(clk/8)] <= low && buffer[dataloc] <= low && buffer[dataloc-(clk*4)] >= high) {
1763 //we have low drift (and a low just before the ST and a low just after the ST) - compensate by backing up the start
1764 for ( i=0; i <= (clk/8); ++i ) {
1765 if ( buffer[dataloc - (clk*4) - i] <= low ) {
1766 dataloc -= i;
1767 break;
1768 }
1769 }
1770 }
1771
1772 size_t newloc = 0;
1773 i=0;
1774 if (g_debugMode==2) prnt("DEBUG STT: Starting STT trim - start: %d, datalen: %d ",dataloc, datalen);
1775 bool firstrun = true;
1776 // warning - overwriting buffer given with raw wave data with ST removed...
1777 while ( dataloc < bufsize-(clk/2) ) {
1778 //compensate for long high at end of ST not being high due to signal loss... (and we cut out the start of wave high part)
1779 if (buffer[dataloc]<high && buffer[dataloc]>low && buffer[dataloc+3]<high && buffer[dataloc+3]>low) {
1780 for(i=0; i < clk/2-tol; ++i) {
1781 buffer[dataloc+i] = high+5;
1782 }
1783 } //test for single sample outlier (high between two lows) in the case of very strong waves
1784 if (buffer[dataloc] >= high && buffer[dataloc+2] <= low) {
1785 buffer[dataloc] = buffer[dataloc+2];
1786 buffer[dataloc+1] = buffer[dataloc+2];
1787 }
1788 if (firstrun) {
1789 *stend = dataloc;
1790 *ststart = dataloc-(clk*4);
1791 firstrun=false;
1792 }
1793 for (i=0; i<datalen; ++i) {
1794 if (i+newloc < bufsize) {
1795 if (i+newloc < dataloc)
1796 buffer[i+newloc] = buffer[dataloc];
1797
1798 dataloc++;
1799 }
1800 }
1801 newloc += i;
1802 //skip next ST - we just assume it will be there from now on...
1803 if (g_debugMode==2) prnt("DEBUG STT: skipping STT at %d to %d", dataloc, dataloc+(clk*4));
1804 dataloc += clk*4;
1805 }
1806 *size = newloc;
1807 return true;
1808 }
1809
1810 // by iceman
1811 // find Visa2000 preamble in already demoded data
1812 int Visa2kDemod_AM(uint8_t *dest, size_t *size) {
1813 if (*size < 96) return -1; //make sure buffer has data
1814 size_t startIdx = 0;
1815 uint8_t preamble[] = {0,1,0,1,0,1,1,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,1,0,0,1,1,0,0,1,0};
1816 if (preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx) == 0)
1817 return -2; //preamble not found
1818 if (*size != 96) return -3; //wrong demoded size
1819 //return start position
1820 return (int)startIdx;
1821 }
Impressum, Datenschutz