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