]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - common/lfdemod.c
1 //-----------------------------------------------------------------------------
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
7 //-----------------------------------------------------------------------------
8 // Low frequency demod/decode commands
9 //-----------------------------------------------------------------------------
16 //get high and low with passed in fuzz factor. also return noise test = 1 for passed or 0 for only noise
17 int getHiLo ( uint8_t * BitStream
, size_t size
, int * high
, int * low
, uint8_t fuzzHi
, uint8_t fuzzLo
)
21 // get high and low thresholds
22 for ( int i
= 0 ; i
< size
; i
++){
23 if ( BitStream
[ i
] > * high
) * high
= BitStream
[ i
];
24 if ( BitStream
[ i
] < * low
) * low
= BitStream
[ i
];
26 if (* high
< 123 ) return - 1 ; // just noise
27 * high
= ( int )(((* high
- 128 )*((( float ) fuzzHi
)/ 100 ))+ 128 );
28 * low
= ( int )(((* low
- 128 )*((( float ) fuzzLo
)/ 100 ))+ 128 );
33 //takes 1s and 0s and searches for EM410x format - output EM ID
34 uint64_t Em410xDecode ( uint8_t * BitStream
, size_t * size
, size_t * startIdx
)
36 //no arguments needed - built this way in case we want this to be a direct call from "data " cmds in the future
37 // otherwise could be a void with no arguments
41 if ( BitStream
[ 10 ]> 1 ){ //allow only 1s and 0s
42 // PrintAndLog("no data found");
46 // 111111111 bit pattern represent start of frame
47 uint8_t frame_marker_mask
[] = { 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 };
51 while ( ( idx
+ 64 ) < * size
) {
53 // search for a start of frame marker
54 if ( memcmp ( BitStream
+ idx
, frame_marker_mask
, sizeof ( frame_marker_mask
)) == 0 )
55 { // frame marker found
59 for ( ii
= 0 ; ii
< 5 ; ++ ii
){
60 parityTest
^= BitStream
[( i
* 5 )+ ii
+ idx
];
62 if (! parityTest
){ //even parity
64 for ( ii
= 0 ; ii
< 4 ;++ ii
){
65 lo
=( lo
<< 1LL )|( BitStream
[( i
* 5 )+ ii
+ idx
]);
67 //PrintAndLog("DEBUG: EM parity passed parity val: %d, i:%d, ii:%d,idx:%d, Buffer: %d%d%d%d%d,lo: %d",parityTest,i,ii,idx,BitStream[idx+ii+(i*5)-5],BitStream[idx+ii+(i*5)-4],BitStream[idx+ii+(i*5)-3],BitStream[idx+ii+(i*5)-2],BitStream[idx+ii+(i*5)-1],lo);
68 } else { //parity failed
69 //PrintAndLog("DEBUG: EM parity failed parity val: %d, i:%d, ii:%d,idx:%d, Buffer: %d%d%d%d%d",parityTest,i,ii,idx,BitStream[idx+ii+(i*5)-5],BitStream[idx+ii+(i*5)-4],BitStream[idx+ii+(i*5)-3],BitStream[idx+ii+(i*5)-2],BitStream[idx+ii+(i*5)-1]);
72 if ( resetCnt
> 5 ) return 0 ; //try 5 times
74 goto restart
; //continue;
77 //skip last 5 bit parity test for simplicity.
88 //takes 2 arguments - clock and invert both as integers
89 //attempts to demodulate ask while decoding manchester
90 //prints binary found and saves in graphbuffer for further commands
91 int askmandemod ( uint8_t * BinStream
, size_t * size
, int * clk
, int * invert
)
95 * clk
= DetectASKClock ( BinStream
, * size
, * clk
); //clock default
97 // if autodetected too low then adjust //MAY NEED ADJUSTMENT
98 if ( clk2
== 0 && * clk
< 8 ) * clk
= 64 ;
99 if ( clk2
== 0 && * clk
< 32 ) * clk
= 32 ;
100 if (* invert
!= 0 && * invert
!= 1 ) * invert
= 0 ;
101 uint32_t initLoopMax
= 200 ;
102 if ( initLoopMax
> * size
) initLoopMax
=* size
;
103 // Detect high and lows
104 // 25% fuzz in case highs and lows aren't clipped [marshmellow]
106 ans
= getHiLo ( BinStream
, initLoopMax
, & high
, & low
, 75 , 75 );
107 if ( ans
< 1 ) return - 2 ; //just noise
109 // PrintAndLog("DEBUG - valid high: %d - valid low: %d",high,low);
110 int lastBit
= 0 ; //set first clock check
111 uint32_t bitnum
= 0 ; //output counter
112 int tol
= 0 ; //clock tolerance adjust - waves will be accepted as within the clock if they fall + or - this value + clock from last valid wave
113 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
115 uint32_t gLen
= * size
;
116 if ( gLen
> 3000 ) gLen
= 3000 ;
118 uint32_t bestStart
= * size
;
119 uint32_t bestErrCnt
= (* size
/ 1000 );
120 uint32_t maxErr
= (* size
/ 1000 );
121 // PrintAndLog("DEBUG - lastbit - %d",lastBit);
122 // loop to find first wave that works
123 for ( iii
= 0 ; iii
< gLen
; ++ iii
){
124 if (( BinStream
[ iii
] >= high
) || ( BinStream
[ iii
] <= low
)){
127 // loop through to see if this start location works
128 for ( i
= iii
; i
< * size
; ++ i
) {
129 if (( BinStream
[ i
] >= high
) && (( i
- lastBit
) > (* clk
- tol
))){
131 } else if (( BinStream
[ i
] <= low
) && (( i
- lastBit
) > (* clk
- tol
))){
132 //low found and we are expecting a bar
135 //mid value found or no bar supposed to be here
136 if (( i
- lastBit
)>(* clk
+ tol
)){
137 //should have hit a high or low based on clock!!
140 //PrintAndLog("DEBUG - no wave in expected area - location: %d, expected: %d-%d, lastBit: %d - resetting search",i,(lastBit+(clk-((int)(tol)))),(lastBit+(clk+((int)(tol)))),lastBit);
143 lastBit
+=* clk
; //skip over until hit too many errors
144 if ( errCnt
>( maxErr
)) break ; //allow 1 error for every 1000 samples else start over
147 if (( i
- iii
) >( 400 * * clk
)) break ; //got plenty of bits
149 //we got more than 64 good bits and not all errors
150 if (((( i
- iii
)/ * clk
) > ( 64 + errCnt
)) && ( errCnt
< maxErr
)) {
155 break ; //great read - finish
157 if ( errCnt
< bestErrCnt
){ //set this as new best run
164 if ( bestErrCnt
< maxErr
){
165 //best run is good enough set to best run and set overwrite BinStream
167 lastBit
= bestStart
- * clk
;
169 for ( i
= iii
; i
< * size
; ++ i
) {
170 if (( BinStream
[ i
] >= high
) && (( i
- lastBit
) > (* clk
- tol
))){
172 BinStream
[ bitnum
] = * invert
;
174 } else if (( BinStream
[ i
] <= low
) && (( i
- lastBit
) > (* clk
- tol
))){
175 //low found and we are expecting a bar
177 BinStream
[ bitnum
] = 1 -* invert
;
180 //mid value found or no bar supposed to be here
181 if (( i
- lastBit
)>(* clk
+ tol
)){
182 //should have hit a high or low based on clock!!
185 //PrintAndLog("DEBUG - no wave in expected area - location: %d, expected: %d-%d, lastBit: %d - resetting search",i,(lastBit+(clk-((int)(tol)))),(lastBit+(clk+((int)(tol)))),lastBit);
187 BinStream
[ bitnum
]= 77 ;
191 lastBit
+=* clk
; //skip over error
194 if ( bitnum
>= 400 ) break ;
206 //encode binary data into binary manchester
207 int ManchesterEncode ( uint8_t * BitStream
, size_t size
)
209 size_t modIdx
= 20000 , i
= 0 ;
210 if ( size
> modIdx
) return - 1 ;
211 for ( size_t idx
= 0 ; idx
< size
; idx
++){
212 BitStream
[ idx
+ modIdx
++] = BitStream
[ idx
];
213 BitStream
[ idx
+ modIdx
++] = BitStream
[ idx
]^ 1 ;
215 for (; i
<( size
* 2 ); i
++){
216 BitStream
[ i
] = BitStream
[ i
+ 20000 ];
222 //take 10 and 01 and manchester decode
223 //run through 2 times and take least errCnt
224 int manrawdecode ( uint8_t * BitStream
, size_t * size
)
232 for ( ii
= 1 ; ii
< 3 ;++ ii
){
234 for ( i
= i
+ ii
; i
<* size
- 2 ; i
+= 2 ){
235 if ( BitStream
[ i
]== 1 && ( BitStream
[ i
+ 1 ]== 0 )){
236 } else if (( BitStream
[ i
]== 0 )&& BitStream
[ i
+ 1 ]== 1 ){
240 if ( bitnum
> 300 ) break ;
252 for ( i
= i
+ ii
; i
< * size
- 2 ; i
+= 2 ){
253 if ( BitStream
[ i
] == 1 && ( BitStream
[ i
+ 1 ] == 0 )){
254 BitStream
[ bitnum
++]= 0 ;
255 } else if (( BitStream
[ i
] == 0 ) && BitStream
[ i
+ 1 ] == 1 ){
256 BitStream
[ bitnum
++]= 1 ;
258 BitStream
[ bitnum
++]= 77 ;
261 if ( bitnum
> 300 ) break ;
269 //take 01 or 10 = 0 and 11 or 00 = 1
270 int BiphaseRawDecode ( uint8_t * BitStream
, size_t * size
, int offset
, int invert
)
276 for (; i
<* size
- 2 ; i
+= 2 ){
277 if (( BitStream
[ i
]== 1 && BitStream
[ i
+ 1 ]== 0 ) || ( BitStream
[ i
]== 0 && BitStream
[ i
+ 1 ]== 1 )){
278 BitStream
[ bitnum
++]= 1 ^ invert
;
279 } else if (( BitStream
[ i
]== 0 && BitStream
[ i
+ 1 ]== 0 ) || ( BitStream
[ i
]== 1 && BitStream
[ i
+ 1 ]== 1 )){
280 BitStream
[ bitnum
++]= invert
;
282 BitStream
[ bitnum
++]= 77 ;
285 if ( bitnum
> 250 ) break ;
292 //takes 2 arguments - clock and invert both as integers
293 //attempts to demodulate ask only
294 //prints binary found and saves in graphbuffer for further commands
295 int askrawdemod ( uint8_t * BinStream
, size_t * size
, int * clk
, int * invert
)
298 // int invert=0; //invert default
300 * clk
= DetectASKClock ( BinStream
, * size
, * clk
); //clock default
301 //uint8_t BitStream[502] = {0};
303 //HACK: if clock not detected correctly - default
304 if ( clk2
== 0 && * clk
< 8 ) * clk
= 64 ;
305 if ( clk2
== 0 && * clk
< 32 && clk2
== 0 ) * clk
= 32 ;
306 if (* invert
!= 0 && * invert
!= 1 ) * invert
= 0 ;
307 uint32_t initLoopMax
= 200 ;
308 if ( initLoopMax
> * size
) initLoopMax
=* size
;
309 // Detect high and lows
310 //25% fuzz in case highs and lows aren't clipped [marshmellow]
312 ans
= getHiLo ( BinStream
, initLoopMax
, & high
, & low
, 75 , 75 );
313 if ( ans
< 1 ) return - 2 ; //just noise
315 //PrintAndLog("DEBUG - valid high: %d - valid low: %d",high,low);
316 int lastBit
= 0 ; //set first clock check
317 uint32_t bitnum
= 0 ; //output counter
318 uint8_t tol
= 0 ; //clock tolerance adjust - waves will be accepted as within the clock
319 // if they fall + or - this value + clock from last valid wave
320 if (* clk
== 32 ) tol
= 1 ; //clock tolerance may not be needed anymore currently set to
321 // + or - 1 but could be increased for poor waves or removed entirely
323 uint32_t gLen
= * size
;
324 if ( gLen
> 500 ) gLen
= 500 ;
326 uint32_t bestStart
= * size
;
327 uint32_t bestErrCnt
= (* size
/ 1000 );
328 uint32_t maxErr
= bestErrCnt
;
330 //PrintAndLog("DEBUG - lastbit - %d",lastBit);
331 //loop to find first wave that works
332 for ( iii
= 0 ; iii
< gLen
; ++ iii
){
333 if (( BinStream
[ iii
]>= high
) || ( BinStream
[ iii
]<= low
)){
335 //loop through to see if this start location works
336 for ( i
= iii
; i
< * size
; ++ i
) {
337 if (( BinStream
[ i
] >= high
) && (( i
- lastBit
)>(* clk
- tol
))){
339 //BitStream[bitnum] = *invert;
342 } else if (( BinStream
[ i
] <= low
) && (( i
- lastBit
)>(* clk
- tol
))){
343 //low found and we are expecting a bar
345 //BitStream[bitnum] = 1- *invert;
348 } else if (( BinStream
[ i
]<= low
) && ( midBit
== 0 ) && (( i
- lastBit
)>((* clk
/ 2 )- tol
))){
351 //BitStream[bitnum]= 1- *invert;
353 } else if (( BinStream
[ i
]>= high
) && ( midBit
== 0 ) && (( i
- lastBit
)>((* clk
/ 2 )- tol
))){
356 //BitStream[bitnum]= *invert;
358 } else if (( i
- lastBit
)>((* clk
/ 2 )+ tol
) && ( midBit
== 0 )){
361 //BitStream[bitnum]= BitStream[bitnum-1];
364 //mid value found or no bar supposed to be here
366 if (( i
- lastBit
)>(* clk
+ tol
)){
367 //should have hit a high or low based on clock!!
369 //PrintAndLog("DEBUG - no wave in expected area - location: %d, expected: %d-%d, lastBit: %d - resetting search",i,(lastBit+(clk-((int)(tol)))),(lastBit+(clk+((int)(tol)))),lastBit);
371 // BitStream[bitnum]=77;
376 lastBit
+=* clk
; //skip over until hit too many errors
377 if ( errCnt
> ((* size
/ 1000 ))){ //allow 1 error for every 1000 samples else start over
379 // bitnum=0;//start over
384 if (( i
- iii
)>( 500 * * clk
)) break ; //got enough bits
386 //we got more than 64 good bits and not all errors
387 if (((( i
- iii
)/ * clk
) > ( 64 + errCnt
)) && ( errCnt
<(* size
/ 1000 ))) {
392 break ; //great read - finish
394 if ( errCnt
< bestErrCnt
){ //set this as new best run
401 if ( bestErrCnt
< maxErr
){
402 //best run is good enough - set to best run and overwrite BinStream
404 lastBit
= bestStart
- * clk
;
406 for ( i
= iii
; i
< * size
; ++ i
) {
407 if (( BinStream
[ i
] >= high
) && (( i
- lastBit
) > (* clk
- tol
))){
409 BinStream
[ bitnum
] = * invert
;
412 } else if (( BinStream
[ i
] <= low
) && (( i
- lastBit
) > (* clk
- tol
))){
413 //low found and we are expecting a bar
415 BinStream
[ bitnum
] = 1 -* invert
;
418 } else if (( BinStream
[ i
]<= low
) && ( midBit
== 0 ) && (( i
- lastBit
)>((* clk
/ 2 )- tol
))){
421 BinStream
[ bitnum
] = 1 - * invert
;
423 } else if (( BinStream
[ i
]>= high
) && ( midBit
== 0 ) && (( i
- lastBit
)>((* clk
/ 2 )- tol
))){
426 BinStream
[ bitnum
] = * invert
;
428 } else if (( i
- lastBit
)>((* clk
/ 2 )+ tol
) && ( midBit
== 0 )){
431 if ( bitnum
!= 0 ) BinStream
[ bitnum
] = BinStream
[ bitnum
- 1 ];
435 //mid value found or no bar supposed to be here
436 if (( i
- lastBit
)>(* clk
+ tol
)){
437 //should have hit a high or low based on clock!!
440 //PrintAndLog("DEBUG - no wave in expected area - location: %d, expected: %d-%d, lastBit: %d - resetting search",i,(lastBit+(clk-((int)(tol)))),(lastBit+(clk+((int)(tol)))),lastBit);
442 BinStream
[ bitnum
]= 77 ;
446 lastBit
+=* clk
; //skip over error
449 if ( bitnum
>= 400 ) break ;
459 //translate wave to 11111100000 (1 for each short wave 0 for each long wave)
460 size_t fsk_wave_demod ( uint8_t * dest
, size_t size
, uint8_t fchigh
, uint8_t fclow
)
462 uint32_t last_transition
= 0 ;
465 if ( fchigh
== 0 ) fchigh
= 10 ;
466 if ( fclow
== 0 ) fclow
= 8 ;
467 //set the threshold close to 0 (graph) or 128 std to avoid static
468 uint8_t threshold_value
= 123 ;
470 // sync to first lo-hi transition, and threshold
472 // Need to threshold first sample
474 if ( dest
[ 0 ] < threshold_value
) dest
[ 0 ] = 0 ;
478 // count cycles between consecutive lo-hi transitions, there should be either 8 (fc/8)
479 // or 10 (fc/10) cycles but in practice due to noise etc we may end up with with anywhere
480 // between 7 to 11 cycles so fuzz it by treat anything <9 as 8 and anything else as 10
481 for ( idx
= 1 ; idx
< size
; idx
++) {
482 // threshold current value
484 if ( dest
[ idx
] < threshold_value
) dest
[ idx
] = 0 ;
487 // Check for 0->1 transition
488 if ( dest
[ idx
- 1 ] < dest
[ idx
]) { // 0 -> 1 transition
489 if (( idx
- last_transition
)<( fclow
- 2 )){ //0-5 = garbage noise
490 //do nothing with extra garbage
491 } else if (( idx
- last_transition
) < ( fchigh
- 1 )) { //6-8 = 8 waves
493 } else { //9+ = 10 waves
496 last_transition
= idx
;
500 return numBits
; //Actually, it returns the number of bytes, but each byte represents a bit: 1 or 0
503 uint32_t myround2 ( float f
)
505 if ( f
>= 2000 ) return 2000 ; //something bad happened
506 return ( uint32_t ) ( f
+ ( float ) 0.5 );
509 //translate 11111100000 to 10
510 size_t aggregate_bits ( uint8_t * dest
, size_t size
, uint8_t rfLen
, uint8_t maxConsequtiveBits
,
511 uint8_t invert
, uint8_t fchigh
, uint8_t fclow
)
513 uint8_t lastval
= dest
[ 0 ];
518 for ( idx
= 1 ; idx
< size
; idx
++) {
520 if ( dest
[ idx
]== lastval
) {
524 //if lastval was 1, we have a 1->0 crossing
525 if ( dest
[ idx
- 1 ]== 1 ) {
526 n
= myround2 (( float )( n
+ 1 )/(( float )( rfLen
)/( float ) fclow
));
527 } else { // 0->1 crossing
528 n
= myround2 (( float )( n
+ 1 )/(( float )( rfLen
- 1 )/( float ) fchigh
)); //-1 for fudge factor
532 if ( n
< maxConsequtiveBits
) //Consecutive
534 if ( invert
== 0 ){ //invert bits
535 memset ( dest
+ numBits
, dest
[ idx
- 1 ] , n
);
537 memset ( dest
+ numBits
, dest
[ idx
- 1 ]^ 1 , n
);
546 //by marshmellow (from holiman's base)
547 // full fsk demod from GraphBuffer wave to decoded 1s and 0s (no mandemod)
548 int fskdemod ( uint8_t * dest
, size_t size
, uint8_t rfLen
, uint8_t invert
, uint8_t fchigh
, uint8_t fclow
)
551 size
= fsk_wave_demod ( dest
, size
, fchigh
, fclow
);
552 size
= aggregate_bits ( dest
, size
, rfLen
, 192 , invert
, fchigh
, fclow
);
555 // loop to get raw HID waveform then FSK demodulate the TAG ID from it
556 int HIDdemodFSK ( uint8_t * dest
, size_t * size
, uint32_t * hi2
, uint32_t * hi
, uint32_t * lo
)
559 size_t idx
= 0 , size2
=* size
, startIdx
= 0 ;
562 * size
= fskdemod ( dest
, size2
, 50 , 0 , 10 , 8 );
564 // final loop, go over previously decoded manchester data and decode into usable tag ID
565 // 111000 bit pattern represent start of frame, 01 pattern represents a 1 and 10 represents a 0
566 uint8_t frame_marker_mask
[] = { 1 , 1 , 1 , 0 , 0 , 0 };
570 while ( idx
+ sizeof ( frame_marker_mask
) < * size
) {
571 // search for a start of frame marker
572 if ( memcmp ( dest
+ idx
, frame_marker_mask
, sizeof ( frame_marker_mask
)) == 0 )
573 { // frame marker found
575 idx
+= sizeof ( frame_marker_mask
);
576 while ( dest
[ idx
] != dest
[ idx
+ 1 ] && idx
< * size
- 2 )
578 // Keep going until next frame marker (or error)
579 // Shift in a bit. Start by shifting high registers
580 * hi2
= (* hi2
<< 1 )|(* hi
>> 31 );
581 * hi
= (* hi
<< 1 )|(* lo
>> 31 );
582 //Then, shift in a 0 or one into low
583 if ( dest
[ idx
] && ! dest
[ idx
+ 1 ]) // 1 0
590 // Hopefully, we read a tag and hit upon the next frame marker
591 if ( idx
+ sizeof ( frame_marker_mask
) < * size
)
593 if ( memcmp ( dest
+ idx
, frame_marker_mask
, sizeof ( frame_marker_mask
)) == 0 )
601 * hi2
= * hi
= * lo
= 0 ;
610 // loop to get raw paradox waveform then FSK demodulate the TAG ID from it
611 size_t ParadoxdemodFSK ( uint8_t * dest
, size_t * size
, uint32_t * hi2
, uint32_t * hi
, uint32_t * lo
)
614 size_t idx
= 0 , size2
=* size
;
617 * size
= fskdemod ( dest
, size2
, 50 , 1 , 10 , 8 );
619 // final loop, go over previously decoded manchester data and decode into usable tag ID
620 // 00001111 bit pattern represent start of frame, 01 pattern represents a 1 and 10 represents a 0
621 uint8_t frame_marker_mask
[] = { 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 };
622 uint16_t numshifts
= 0 ;
625 while ( idx
+ sizeof ( frame_marker_mask
) < * size
) {
626 // search for a start of frame marker
627 if ( memcmp ( dest
+ idx
, frame_marker_mask
, sizeof ( frame_marker_mask
)) == 0 )
628 { // frame marker found
630 idx
+= sizeof ( frame_marker_mask
);
631 while ( dest
[ idx
] != dest
[ idx
+ 1 ] && idx
< * size
- 2 )
633 // Keep going until next frame marker (or error)
634 // Shift in a bit. Start by shifting high registers
635 * hi2
= (* hi2
<< 1 )|(* hi
>> 31 );
636 * hi
= (* hi
<< 1 )|(* lo
>> 31 );
637 //Then, shift in a 0 or one into low
638 if ( dest
[ idx
] && ! dest
[ idx
+ 1 ]) // 1 0
645 // Hopefully, we read a tag and hit upon the next frame marker and got enough bits
646 if ( idx
+ sizeof ( frame_marker_mask
) < * size
&& numshifts
> 40 )
648 if ( memcmp ( dest
+ idx
, frame_marker_mask
, sizeof ( frame_marker_mask
)) == 0 )
650 //good return - return start grid position and bits found
651 * size
= (( numshifts
* 2 )+ 8 );
656 * hi2
= * hi
= * lo
= 0 ;
665 uint32_t bytebits_to_byte ( uint8_t * src
, size_t numbits
)
668 for ( int i
= 0 ; i
< numbits
; i
++)
670 num
= ( num
<< 1 ) | (* src
);
676 int IOdemodFSK ( uint8_t * dest
, size_t size
)
678 static const uint8_t THRESHOLD
= 129 ;
680 //make sure buffer has data
681 if ( size
< 66 ) return - 1 ;
682 //test samples are not just noise
683 uint8_t justNoise
= 1 ;
684 for ( idx
= 0 ; idx
< size
&& justNoise
; idx
++){
685 justNoise
= dest
[ idx
] < THRESHOLD
;
687 if ( justNoise
) return 0 ;
690 size
= fskdemod ( dest
, size
, 64 , 1 , 10 , 8 ); // RF/64 and invert
691 if ( size
< 65 ) return - 1 ; //did we get a good demod?
693 //0 10 20 30 40 50 60
695 //01234567 8 90123456 7 89012345 6 78901234 5 67890123 4 56789012 3 45678901 23
696 //-----------------------------------------------------------------------------
697 //00000000 0 11110000 1 facility 1 version* 1 code*one 1 code*two 1 ???????? 11
699 //XSF(version)facility:codeone+codetwo
701 uint8_t mask
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 };
702 for ( idx
= 0 ; idx
< ( size
- 65 ); idx
++) {
703 if ( memcmp ( dest
+ idx
, mask
, sizeof ( mask
))== 0 ) {
705 if (! dest
[ idx
+ 8 ] && dest
[ idx
+ 17 ]== 1 && dest
[ idx
+ 26 ]== 1 && dest
[ idx
+ 35 ]== 1 && dest
[ idx
+ 44 ]== 1 && dest
[ idx
+ 53 ]== 1 ){
706 //confirmed proper separator bits found
707 //return start position
716 // pass bits to be tested in bits, length bits passed in bitLen, and parity type (even=0 | odd=1) in pType
717 // returns 1 if passed
718 uint8_t parityTest ( uint32_t bits
, uint8_t bitLen
, uint8_t pType
)
721 for ( uint8_t i
= 0 ; i
< bitLen
; i
++){
722 ans
^= (( bits
>> i
) & 1 );
724 //PrintAndLog("DEBUG: ans: %d, ptype: %d",ans,pType);
725 return ( ans
== pType
);
729 // takes a array of binary values, start position, length of bits per parity (includes parity bit),
730 // Parity Type (1 for odd 0 for even), and binary Length (length to run)
731 size_t removeParity ( uint8_t * BitStream
, size_t startIdx
, uint8_t pLen
, uint8_t pType
, size_t bLen
)
733 uint32_t parityWd
= 0 ;
734 size_t j
= 0 , bitCnt
= 0 ;
735 for ( int word
= 0 ; word
< ( bLen
); word
+= pLen
){
736 for ( int bit
= 0 ; bit
< pLen
; bit
++){
737 parityWd
= ( parityWd
<< 1 ) | BitStream
[ startIdx
+ word
+ bit
];
738 BitStream
[ j
++] = ( BitStream
[ startIdx
+ word
+ bit
]);
741 // if parity fails then return 0
742 if ( parityTest ( parityWd
, pLen
, pType
) == 0 ) return - 1 ;
746 // if we got here then all the parities passed
747 //return ID start index and size
752 // FSK Demod then try to locate an AWID ID
753 int AWIDdemodFSK ( uint8_t * dest
, size_t size
)
755 static const uint8_t THRESHOLD
= 123 ;
756 uint32_t idx
= 0 , idx2
= 0 ;
757 //make sure buffer has data
758 if ( size
< 96 * 50 ) return - 1 ;
759 //test samples are not just noise
760 uint8_t justNoise
= 1 ;
761 for ( idx
= 0 ; idx
< size
&& justNoise
; idx
++){
762 justNoise
= dest
[ idx
] < THRESHOLD
;
764 if ( justNoise
) return - 2 ;
767 size
= fskdemod ( dest
, size
, 50 , 1 , 10 , 8 ); // RF/64 and invert
768 if ( size
< 96 ) return - 3 ; //did we get a good demod?
770 uint8_t mask
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 };
771 for ( idx
= 0 ; idx
< ( size
- 96 ); idx
++) {
772 if ( memcmp ( dest
+ idx
, mask
, sizeof ( mask
))== 0 ) {
773 // frame marker found
774 //return ID start index
775 if ( idx2
== 0 ) idx2
= idx
;
776 else if ( idx
- idx2
== 96 ) return idx2
;
779 // should always get 96 bits if it is awid
787 // FSK Demod then try to locate an Farpointe Data (pyramid) ID
788 int PyramiddemodFSK ( uint8_t * dest
, size_t size
)
790 static const uint8_t THRESHOLD
= 123 ;
791 uint32_t idx
= 0 , idx2
= 0 ;
792 // size_t size2 = size;
793 //make sure buffer has data
794 if ( size
< 128 * 50 ) return - 5 ;
795 //test samples are not just noise
796 uint8_t justNoise
= 1 ;
797 for ( idx
= 0 ; idx
< size
&& justNoise
; idx
++){
798 justNoise
= dest
[ idx
] < THRESHOLD
;
800 if ( justNoise
) return - 1 ;
803 size
= fskdemod ( dest
, size
, 50 , 1 , 10 , 8 ); // RF/64 and invert
804 if ( size
< 128 ) return - 2 ; //did we get a good demod?
806 uint8_t mask
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 };
807 for ( idx
= 0 ; idx
< ( size
- 128 ); idx
++) {
808 if ( memcmp ( dest
+ idx
, mask
, sizeof ( mask
))== 0 ) {
809 // frame marker found
810 if ( idx2
== 0 ) idx2
= idx
;
811 else if ( idx
- idx2
== 128 ) return idx2
;
821 // not perfect especially with lower clocks or VERY good antennas (heavy wave clipping)
822 // maybe somehow adjust peak trimming value based on samples to fix?
823 int DetectASKClock ( uint8_t dest
[], size_t size
, int clock
)
826 int clk
[]={ 8 , 16 , 32 , 40 , 50 , 64 , 100 , 128 , 256 };
827 int loopCnt
= 256 ; //don't need to loop through entire array...
828 if ( size
< loopCnt
) loopCnt
= size
;
830 //if we already have a valid clock quit
833 if ( clk
[ i
] == clock
) return clock
;
835 //get high and low peak
837 getHiLo ( dest
, loopCnt
, & peak
, & low
, 75 , 75 );
842 int bestErr
[]={ 1000 , 1000 , 1000 , 1000 , 1000 , 1000 , 1000 , 1000 , 1000 };
844 //test each valid clock from smallest to greatest to see which lines up
845 for ( clkCnt
= 0 ; clkCnt
< 8 ; ++ clkCnt
){
846 if ( clk
[ clkCnt
] == 32 ){
851 bestErr
[ clkCnt
]= 1000 ;
852 //try lining up the peaks by moving starting point (try first 256)
853 for ( ii
= 0 ; ii
< loopCnt
; ++ ii
){
854 if (( dest
[ ii
] >= peak
) || ( dest
[ ii
] <= low
)){
856 // now that we have the first one lined up test rest of wave array
857 for ( i
= 0 ; i
<(( int )(( size
- ii
- tol
)/ clk
[ clkCnt
])- 1 ); ++ i
){
858 if ( dest
[ ii
+( i
* clk
[ clkCnt
])]>= peak
|| dest
[ ii
+( i
* clk
[ clkCnt
])]<= low
){
859 } else if ( dest
[ ii
+( i
* clk
[ clkCnt
])- tol
]>= peak
|| dest
[ ii
+( i
* clk
[ clkCnt
])- tol
]<= low
){
860 } else if ( dest
[ ii
+( i
* clk
[ clkCnt
])+ tol
]>= peak
|| dest
[ ii
+( i
* clk
[ clkCnt
])+ tol
]<= low
){
861 } else { //error no peak detected
865 //if we found no errors then we can stop here
866 // this is correct one - return this clock
867 //PrintAndLog("DEBUG: clk %d, err %d, ii %d, i %d",clk[clkCnt],errCnt,ii,i);
868 if ( errCnt
== 0 && clkCnt
< 6 ) return clk
[ clkCnt
];
869 //if we found errors see if it is lowest so far and save it as best run
870 if ( errCnt
< bestErr
[ clkCnt
]) bestErr
[ clkCnt
]= errCnt
;
876 for ( iii
= 0 ; iii
< 8 ; ++ iii
){
877 if ( bestErr
[ iii
]< bestErr
[ best
]){
878 if ( bestErr
[ iii
]== 0 ) bestErr
[ iii
]= 1 ;
879 // current best bit to error ratio vs new bit to error ratio
880 if ((( size
/ clk
[ best
])/ bestErr
[ best
] < ( size
/ clk
[ iii
])/ bestErr
[ iii
]) ){
890 //detect psk clock by reading #peaks vs no peaks(or errors)
891 int DetectpskNRZClock ( uint8_t dest
[], size_t size
, int clock
)
894 int clk
[]={ 16 , 32 , 40 , 50 , 64 , 100 , 128 , 256 };
895 int loopCnt
= 2048 ; //don't need to loop through entire array...
896 if ( size
< loopCnt
) loopCnt
= size
;
898 //if we already have a valid clock quit
900 if ( clk
[ i
] == clock
) return clock
;
902 //get high and low peak
904 getHiLo ( dest
, loopCnt
, & peak
, & low
, 75 , 75 );
906 //PrintAndLog("DEBUG: peak: %d, low: %d",peak,low);
912 int bestErr
[]={ 1000 , 1000 , 1000 , 1000 , 1000 , 1000 , 1000 , 1000 };
913 int peaksdet
[]={ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
914 //test each valid clock from smallest to greatest to see which lines up
915 for ( clkCnt
= 0 ; clkCnt
< 7 ; ++ clkCnt
){
916 if ( clk
[ clkCnt
] <= 32 ){
921 //try lining up the peaks by moving starting point (try first 256)
922 for ( ii
= 0 ; ii
< loopCnt
; ++ ii
){
923 if (( dest
[ ii
] >= peak
) || ( dest
[ ii
] <= low
)){
926 // now that we have the first one lined up test rest of wave array
927 for ( i
= 0 ; i
< (( int )(( size
- ii
- tol
)/ clk
[ clkCnt
])- 1 ); ++ i
){
928 if ( dest
[ ii
+( i
* clk
[ clkCnt
])]>= peak
|| dest
[ ii
+( i
* clk
[ clkCnt
])]<= low
){
930 } else if ( dest
[ ii
+( i
* clk
[ clkCnt
])- tol
]>= peak
|| dest
[ ii
+( i
* clk
[ clkCnt
])- tol
]<= low
){
932 } else if ( dest
[ ii
+( i
* clk
[ clkCnt
])+ tol
]>= peak
|| dest
[ ii
+( i
* clk
[ clkCnt
])+ tol
]<= low
){
934 } else { //error no peak detected
938 if ( peakcnt
> peaksdet
[ clkCnt
]) {
939 peaksdet
[ clkCnt
]= peakcnt
;
940 bestErr
[ clkCnt
]= errCnt
;
947 //int ratio2; //debug
950 for ( iii
= 0 ; iii
< 7 ; ++ iii
){
952 //ratio2=1000; //debug
953 //bits=size/clk[iii]; //debug
954 if ( peaksdet
[ iii
] > 0 ){
955 ratio
= bestErr
[ iii
]/ peaksdet
[ iii
];
956 if ((( bestErr
[ best
]/ peaksdet
[ best
]) > ( ratio
)+ 1 )){
959 //ratio2=bits/peaksdet[iii]; //debug
961 //PrintAndLog("DEBUG: Clk: %d, peaks: %d, errs: %d, bestClk: %d, ratio: %d, bits: %d, peakbitr: %d",clk[iii],peaksdet[iii],bestErr[iii],clk[best],ratio, bits,ratio2);
966 //by marshmellow (attempt to get rid of high immediately after a low)
967 void pskCleanWave ( uint8_t * BitStream
, size_t size
)
974 getHiLo ( BitStream
, size
, & high
, & low
, 80 , 90 );
976 for ( i
= 0 ; i
< size
; ++ i
){
978 if ( BitStream
[ i
]> low
){
986 } else if ( newHigh
== 1 ){
987 if ( BitStream
[ i
]< high
){
996 if ( BitStream
[ i
] <= low
) newLow
= 1 ;
997 if ( BitStream
[ i
] >= high
) newHigh
= 1 ;
1003 //redesigned by marshmellow adjusted from existing decode functions
1004 //indala id decoding - only tested on 26 bit tags, but attempted to make it work for more
1005 int indala26decode ( uint8_t * bitStream
, size_t * size
, uint8_t * invert
)
1007 //26 bit 40134 format (don't know other formats)
1009 int long_wait
= 29 ; //29 leading zeros in format
1015 // Finding the start of a UID
1016 for ( start
= 0 ; start
<= * size
- 250 ; start
++) {
1017 first
= bitStream
[ start
];
1018 for ( i
= start
; i
< start
+ long_wait
; i
++) {
1019 if ( bitStream
[ i
] != first
) {
1023 if ( i
== ( start
+ long_wait
)) {
1027 if ( start
== * size
- 250 + 1 ) {
1028 // did not find start sequence
1031 // Inverting signal if needed
1033 for ( i
= start
; i
< * size
; i
++) {
1034 bitStream
[ i
] = ! bitStream
[ i
];
1040 //found start once now test length by finding next one
1041 for ( ii
= start
+ 29 ; ii
<= * size
- 250 ; ii
++) {
1042 first2
= bitStream
[ ii
];
1043 for ( iii
= ii
; iii
< ii
+ long_wait
; iii
++) {
1044 if ( bitStream
[ iii
] != first2
) {
1048 if ( iii
== ( ii
+ long_wait
)) {
1052 if ( ii
== * size
- 250 + 1 ){
1053 // did not find second start sequence
1060 for ( ii
= 0 ; ii
< bitCnt
; ii
++) {
1061 bitStream
[ ii
] = bitStream
[ i
++];
1068 //by marshmellow - demodulate PSK1 wave or NRZ wave (both similar enough)
1069 //peaks switch bit (high=1 low=0) each clock cycle = 1 bit determined by last peak
1070 int pskNRZrawDemod ( uint8_t * dest
, size_t * size
, int * clk
, int * invert
)
1072 pskCleanWave ( dest
,* size
);
1073 int clk2
= DetectpskNRZClock ( dest
, * size
, * clk
);
1077 ans
= getHiLo ( dest
, 1260 , & high
, & low
, 75 , 80 ); //25% fuzz on high 20% fuzz on low
1078 if ( ans
< 1 ) return - 2 ; //just noise
1079 uint32_t gLen
= * size
;
1080 //PrintAndLog("DEBUG - valid high: %d - valid low: %d",high,low);
1081 int lastBit
= 0 ; //set first clock check
1082 uint32_t bitnum
= 0 ; //output counter
1083 uint8_t tol
= 1 ; //clock tolerance adjust - waves will be accepted as within the clock if they fall + or - this value + clock from last valid wave
1084 if (* clk
== 32 ) tol
= 2 ; //clock tolerance may not be needed anymore currently set to + or - 1 but could be increased for poor waves or removed entirely
1087 uint32_t bestStart
= * size
;
1088 uint32_t maxErr
= (* size
/ 1000 );
1089 uint32_t bestErrCnt
= maxErr
;
1093 uint8_t ignorewin
=* clk
/ 8 ;
1094 //PrintAndLog("DEBUG - lastbit - %d",lastBit);
1095 //loop to find first wave that works - align to clock
1096 for ( iii
= 0 ; iii
< gLen
; ++ iii
){
1097 if (( dest
[ iii
]>= high
) || ( dest
[ iii
]<= low
)){
1099 //loop through to see if this start location works
1100 for ( i
= iii
; i
< * size
; ++ i
) {
1101 //if we found a high bar and we are at a clock bit
1102 if (( dest
[ i
]>= high
) && ( i
>= lastBit
+* clk
- tol
&& i
<= lastBit
+* clk
+ tol
)){
1107 //else if low bar found and we are at a clock point
1108 } else if (( dest
[ i
]<= low
) && ( i
>= lastBit
+* clk
- tol
&& i
<= lastBit
+* clk
+ tol
)){
1113 //else if no bars found
1114 } else if ( dest
[ i
] < high
&& dest
[ i
] > low
) {
1118 //if we are past a clock point
1119 if ( i
>= lastBit
+* clk
+ tol
){ //clock val
1123 //else if bar found but we are not at a clock bit and we did not just have a clock bit
1124 } else if (( dest
[ i
]>= high
|| dest
[ i
]<= low
) && ( i
< lastBit
+* clk
- tol
|| i
> lastBit
+* clk
+ tol
) && ( bitHigh
== 0 )){
1125 //error bar found no clock...
1128 if ( bitnum
>= 1000 ) break ;
1130 //we got more than 64 good bits and not all errors
1131 if (( bitnum
> ( 64 + errCnt
)) && ( errCnt
< ( maxErr
))) {
1132 //possible good read
1135 bestErrCnt
= errCnt
;
1136 break ; //great read - finish
1138 if ( errCnt
< bestErrCnt
){ //set this as new best run
1139 bestErrCnt
= errCnt
;
1145 if ( bestErrCnt
< maxErr
){
1146 //best run is good enough set to best run and set overwrite BinStream
1148 lastBit
= bestStart
-* clk
;
1150 for ( i
= iii
; i
< * size
; ++ i
) {
1151 //if we found a high bar and we are at a clock bit
1152 if (( dest
[ i
] >= high
) && ( i
>= lastBit
+* clk
- tol
&& i
<= lastBit
+* clk
+ tol
)){
1156 dest
[ bitnum
]= curBit
;
1159 //else if low bar found and we are at a clock point
1160 } else if (( dest
[ i
]<= low
) && ( i
>= lastBit
+* clk
- tol
&& i
<= lastBit
+* clk
+ tol
)){
1164 dest
[ bitnum
]= curBit
;
1167 //else if no bars found
1168 } else if ( dest
[ i
]< high
&& dest
[ i
]> low
) {
1172 //if we are past a clock point
1173 if ( i
>= lastBit
+* clk
+ tol
){ //clock val
1175 dest
[ bitnum
]= curBit
;
1178 //else if bar found but we are not at a clock bit and we did not just have a clock bit
1179 } else if (( dest
[ i
]>= high
|| dest
[ i
]<= low
) && (( i
< lastBit
+* clk
- tol
) || ( i
> lastBit
+* clk
+ tol
)) && ( bitHigh
== 0 )){
1180 //error bar found no clock...
1186 if ( bitnum
>= 1000 ) break ;
1203 //detects the bit clock for FSK given the high and low Field Clocks
1204 uint8_t detectFSKClk ( uint8_t * BitStream
, size_t size
, uint8_t fcHigh
, uint8_t fcLow
)
1206 uint8_t clk
[] = { 8 , 16 , 32 , 40 , 50 , 64 , 100 , 128 , 0 };
1207 uint16_t rfLens
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
1208 uint8_t rfCnts
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
1209 uint8_t rfLensFnd
= 0 ;
1210 uint8_t lastFCcnt
= 0 ;
1211 uint32_t fcCounter
= 0 ;
1212 uint16_t rfCounter
= 0 ;
1213 uint8_t firstBitFnd
= 0 ;
1216 uint8_t fcTol
= ( uint8_t )( 0.5 +( float )( fcHigh
- fcLow
)/ 2 );
1221 //PrintAndLog("DEBUG: fcTol: %d",fcTol);
1222 // prime i to first up transition
1223 for ( i
= 1 ; i
< size
- 1 ; i
++)
1224 if ( BitStream
[ i
] > BitStream
[ i
- 1 ] && BitStream
[ i
]>= BitStream
[ i
+ 1 ])
1227 for (; i
< size
- 1 ; i
++){
1228 if ( BitStream
[ i
] > BitStream
[ i
- 1 ] && BitStream
[ i
]>= BitStream
[ i
+ 1 ]){
1232 // if we got less than the small fc + tolerance then set it to the small fc
1233 if ( fcCounter
< fcLow
+ fcTol
)
1235 else //set it to the large fc
1238 //look for bit clock (rf/xx)
1239 if (( fcCounter
< lastFCcnt
|| fcCounter
> lastFCcnt
)){
1240 //not the same size as the last wave - start of new bit sequence
1242 if ( firstBitFnd
> 1 ){ //skip first wave change - probably not a complete bit
1243 for ( int ii
= 0 ; ii
< 15 ; ii
++){
1244 if ( rfLens
[ ii
]== rfCounter
){
1250 if ( rfCounter
> 0 && rfLensFnd
< 15 ){
1251 //PrintAndLog("DEBUG: rfCntr %d, fcCntr %d",rfCounter,fcCounter);
1252 rfCnts
[ rfLensFnd
]++;
1253 rfLens
[ rfLensFnd
++]= rfCounter
;
1259 lastFCcnt
= fcCounter
;
1268 uint8_t rfHighest
= 15 , rfHighest2
= 15 , rfHighest3
= 15 ;
1270 for ( i
= 0 ; i
< 15 ; i
++){
1271 //PrintAndLog("DEBUG: RF %d, cnts %d",rfLens[i], rfCnts[i]);
1272 //get highest 2 RF values (might need to get more values to compare or compare all?)
1273 if ( rfCnts
[ i
]> rfCnts
[ rfHighest
]){
1274 rfHighest3
= rfHighest2
;
1275 rfHighest2
= rfHighest
;
1277 } else if ( rfCnts
[ i
]> rfCnts
[ rfHighest2
]){
1278 rfHighest3
= rfHighest2
;
1280 } else if ( rfCnts
[ i
]> rfCnts
[ rfHighest3
]){
1284 // set allowed clock remainder tolerance to be 1 large field clock length+1
1285 // we could have mistakenly made a 9 a 10 instead of an 8 or visa versa so rfLens could be 1 FC off
1286 uint8_t tol1
= fcHigh
+ 1 ;
1288 //PrintAndLog("DEBUG: hightest: 1 %d, 2 %d, 3 %d",rfLens[rfHighest],rfLens[rfHighest2],rfLens[rfHighest3]);
1290 // loop to find the highest clock that has a remainder less than the tolerance
1291 // compare samples counted divided by
1293 for (; ii
>= 0 ; ii
--){
1294 if ( rfLens
[ rfHighest
] % clk
[ ii
] < tol1
|| rfLens
[ rfHighest
] % clk
[ ii
] > clk
[ ii
]- tol1
){
1295 if ( rfLens
[ rfHighest2
] % clk
[ ii
] < tol1
|| rfLens
[ rfHighest2
] % clk
[ ii
] > clk
[ ii
]- tol1
){
1296 if ( rfLens
[ rfHighest3
] % clk
[ ii
] < tol1
|| rfLens
[ rfHighest3
] % clk
[ ii
] > clk
[ ii
]- tol1
){
1303 if ( ii
< 0 ) return 0 ; // oops we went too far
1309 //countFC is to detect the field clock lengths.
1310 //counts and returns the 2 most common wave lengths
1311 uint16_t countFC ( uint8_t * BitStream
, size_t size
)
1313 uint8_t fcLens
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
1314 uint16_t fcCnts
[] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
1315 uint8_t fcLensFnd
= 0 ;
1316 uint8_t lastFCcnt
= 0 ;
1317 uint32_t fcCounter
= 0 ;
1320 // prime i to first up transition
1321 for ( i
= 1 ; i
< size
- 1 ; i
++)
1322 if ( BitStream
[ i
] > BitStream
[ i
- 1 ] && BitStream
[ i
] >= BitStream
[ i
+ 1 ])
1325 for (; i
< size
- 1 ; i
++){
1326 if ( BitStream
[ i
] > BitStream
[ i
- 1 ] && BitStream
[ i
] >= BitStream
[ i
+ 1 ]){
1327 // new up transition
1330 //if we had 5 and now have 9 then go back to 8 (for when we get a fc 9 instead of an 8)
1331 if ( lastFCcnt
== 5 && fcCounter
== 9 ) fcCounter
--;
1332 //if odd and not rc/5 add one (for when we get a fc 9 instead of 10)
1333 if (( fcCounter
== 9 && fcCounter
& 1 ) || fcCounter
== 4 ) fcCounter
++;
1335 // save last field clock count (fc/xx)
1336 // find which fcLens to save it to:
1337 for ( int ii
= 0 ; ii
< 10 ; ii
++){
1338 if ( fcLens
[ ii
]== fcCounter
){
1344 if ( fcCounter
> 0 && fcLensFnd
< 10 ){
1346 fcCnts
[ fcLensFnd
]++;
1347 fcLens
[ fcLensFnd
++]= fcCounter
;
1356 uint8_t best1
= 9 , best2
= 9 , best3
= 9 ;
1358 // go through fclens and find which ones are bigest 2
1359 for ( i
= 0 ; i
< 10 ; i
++){
1360 // PrintAndLog("DEBUG: FC %d, Cnt %d, Errs %d",fcLens[i],fcCnts[i],errCnt);
1361 // get the 3 best FC values
1362 if ( fcCnts
[ i
]> maxCnt1
) {
1367 } else if ( fcCnts
[ i
]> fcCnts
[ best2
]){
1370 } else if ( fcCnts
[ i
]> fcCnts
[ best3
]){
1374 uint8_t fcH
= 0 , fcL
= 0 ;
1375 if ( fcLens
[ best1
]> fcLens
[ best2
]){
1383 // TODO: take top 3 answers and compare to known Field clocks to get top 2
1385 uint16_t fcs
= ((( uint16_t ) fcH
)<< 8 ) | fcL
;
1386 // PrintAndLog("DEBUG: Best %d best2 %d best3 %d",fcLens[best1],fcLens[best2],fcLens[best3]);