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