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