]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmddata.c
LF Demod streamlining
[proxmark3-svn] / client / cmddata.c
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
2// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3//
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// Data and Graph commands
9//-----------------------------------------------------------------------------
10
7fe9b0b7 11#include <stdio.h>
12#include <stdlib.h>
13#include <string.h>
eb191de6 14//#include <inttypes.h>
7fe9b0b7 15#include <limits.h>
902cb3c0 16#include "proxmark3.h"
7fe9b0b7 17#include "data.h"
18#include "ui.h"
19#include "graph.h"
20#include "cmdparser.h"
d51b2eda 21#include "util.h"
7fe9b0b7 22#include "cmdmain.h"
23#include "cmddata.h"
eb191de6 24#include "../common/lfdemod.h"
7fe9b0b7 25
26static int CmdHelp(const char *Cmd);
27
28int CmdAmp(const char *Cmd)
29{
30 int i, rising, falling;
31 int max = INT_MIN, min = INT_MAX;
32
33 for (i = 10; i < GraphTraceLen; ++i) {
34 if (GraphBuffer[i] > max)
35 max = GraphBuffer[i];
36 if (GraphBuffer[i] < min)
37 min = GraphBuffer[i];
38 }
39
40 if (max != min) {
41 rising = falling= 0;
42 for (i = 0; i < GraphTraceLen; ++i) {
43 if (GraphBuffer[i + 1] < GraphBuffer[i]) {
44 if (rising) {
45 GraphBuffer[i] = max;
46 rising = 0;
47 }
48 falling = 1;
49 }
50 if (GraphBuffer[i + 1] > GraphBuffer[i]) {
51 if (falling) {
52 GraphBuffer[i] = min;
53 falling = 0;
54 }
55 rising= 1;
56 }
57 }
58 }
59 RepaintGraphWindow();
60 return 0;
61}
62
63/*
64 * Generic command to demodulate ASK.
65 *
66 * Argument is convention: positive or negative (High mod means zero
67 * or high mod means one)
68 *
69 * Updates the Graph trace with 0/1 values
70 *
71 * Arguments:
72 * c : 0 or 1
73 */
2fc2150e 74 //this method is dependant on all highs and lows to be the same(or clipped) this creates issues[marshmellow] it also ignores the clock
7fe9b0b7 75int Cmdaskdemod(const char *Cmd)
76{
77 int i;
78 int c, high = 0, low = 0;
79
80 // TODO: complain if we do not give 2 arguments here !
81 // (AL - this doesn't make sense! we're only using one argument!!!)
82 sscanf(Cmd, "%i", &c);
83
84 /* Detect high and lows and clock */
b3b70669 85 // (AL - clock???)
7fe9b0b7 86 for (i = 0; i < GraphTraceLen; ++i)
87 {
88 if (GraphBuffer[i] > high)
89 high = GraphBuffer[i];
90 else if (GraphBuffer[i] < low)
91 low = GraphBuffer[i];
92 }
eb191de6 93 high=abs(high*.75);
94 low=abs(low*.75);
7fe9b0b7 95 if (c != 0 && c != 1) {
96 PrintAndLog("Invalid argument: %s", Cmd);
97 return 0;
98 }
b3b70669 99 //prime loop
7fe9b0b7 100 if (GraphBuffer[0] > 0) {
101 GraphBuffer[0] = 1-c;
102 } else {
103 GraphBuffer[0] = c;
104 }
105 for (i = 1; i < GraphTraceLen; ++i) {
106 /* Transitions are detected at each peak
107 * Transitions are either:
108 * - we're low: transition if we hit a high
109 * - we're high: transition if we hit a low
110 * (we need to do it this way because some tags keep high or
111 * low for long periods, others just reach the peak and go
112 * down)
113 */
ae2f73c1 114 //[marhsmellow] change == to >= for high and <= for low for fuzz
115 if ((GraphBuffer[i] == high) && (GraphBuffer[i - 1] == c)) {
7fe9b0b7 116 GraphBuffer[i] = 1 - c;
ae2f73c1 117 } else if ((GraphBuffer[i] == low) && (GraphBuffer[i - 1] == (1 - c))){
7fe9b0b7 118 GraphBuffer[i] = c;
119 } else {
120 /* No transition */
121 GraphBuffer[i] = GraphBuffer[i - 1];
122 }
123 }
124 RepaintGraphWindow();
125 return 0;
126}
127
eb191de6 128void printBitStream(uint8_t BitStream[], uint32_t bitLen){
2fc2150e 129 uint32_t i = 0;
130 if (bitLen<16) {
131 PrintAndLog("Too few bits found: %d",bitLen);
132 return;
133 }
134 if (bitLen>512) bitLen=512;
135 for (i = 0; i < (bitLen-16); i+=16) {
136 PrintAndLog("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i",
137 BitStream[i],
138 BitStream[i+1],
139 BitStream[i+2],
140 BitStream[i+3],
141 BitStream[i+4],
142 BitStream[i+5],
143 BitStream[i+6],
144 BitStream[i+7],
145 BitStream[i+8],
146 BitStream[i+9],
147 BitStream[i+10],
148 BitStream[i+11],
149 BitStream[i+12],
150 BitStream[i+13],
151 BitStream[i+14],
152 BitStream[i+15]);
153 }
154 return;
155}
eb191de6 156void printEM410x(uint64_t id)
2fc2150e 157{
eb191de6 158 if (id !=0){
0e74c023 159 uint64_t iii=1;
160 uint64_t id2lo=0; //id2hi=0,
eb191de6 161 uint32_t ii=0;
162 uint32_t i=0;
0e74c023 163 for (ii=5; ii>0;ii--){
2fc2150e 164 for (i=0;i<8;i++){
eb191de6 165 id2lo=(id2lo<<1LL)|((id & (iii<<(i+((ii-1)*8))))>>(i+((ii-1)*8)));
2fc2150e 166 }
167 }
0e74c023 168 //output em id
eb191de6 169 PrintAndLog("EM TAG ID : %010llx", id);
0e74c023 170 PrintAndLog("Unique TAG ID: %010llx", id2lo); //id2hi,
eb191de6 171 PrintAndLog("DEZ 8 : %08lld",id & 0xFFFFFF);
172 PrintAndLog("DEZ 10 : %010lld",id & 0xFFFFFF);
173 PrintAndLog("DEZ 5.5 : %05lld.%05lld",(id>>16LL) & 0xFFFF,(id & 0xFFFF));
174 PrintAndLog("DEZ 3.5A : %03lld.%05lld",(id>>32ll),(id & 0xFFFF));
175 PrintAndLog("DEZ 14/IK2 : %014lld",id);
0e74c023 176 PrintAndLog("DEZ 15/IK3 : %015lld",id2lo);
eb191de6 177 PrintAndLog("Other : %05lld_%03lld_%08lld",(id&0xFFFF),((id>>16LL) & 0xFF),(id & 0xFFFFFF));
178 }
179 return;
180}
181
182int CmdEm410xDecode(const char *Cmd)
183{
184 uint64_t id=0;
185 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
186 uint32_t i=0;
187 for (i=0;i<GraphTraceLen;++i){
188 BitStream[i]=(uint8_t)(GraphBuffer[i]+128);
2fc2150e 189 }
eb191de6 190 id = Em410xDecode(BitStream,i);
191 printEM410x(id);
2fc2150e 192 return 0;
193}
194
eb191de6 195int getFromGraphBuf(uint8_t *buff)
196{
197 uint32_t i;
198 for (i=0;i<GraphTraceLen;++i)
199 buff[i]=(uint8_t)(GraphBuffer[i]+128);
200 return i;
201}
e888ed8e 202
203//by marshmellow
eb191de6 204//takes 2 arguments - clock and invert both as integers
205//attempts to demodulate ask while decoding manchester
e888ed8e 206//prints binary found and saves in graphbuffer for further commands
9e6dd4eb 207int Cmdaskmandemod(const char *Cmd)
e888ed8e 208{
eb191de6 209 int invert=0;
210 int clk=0;
211 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
0e74c023 212 sscanf(Cmd, "%i %i", &clk, &invert);
e888ed8e 213 if (invert != 0 && invert != 1) {
214 PrintAndLog("Invalid argument: %s", Cmd);
215 return 0;
216 }
eb191de6 217 uint32_t BitLen = getFromGraphBuf(BitStream);
218
219 int errCnt=0;
220 errCnt = askmandemod(BitStream, &BitLen,&clk,&invert);
221 if (errCnt==-1){ //if fatal error (or -1)
e888ed8e 222 PrintAndLog("no data found");
223 return 0;
eb191de6 224 }
225 PrintAndLog("Using Clock: %d and invert=%d",clk,invert);
226 //PrintAndLog("Data start pos:%d, lastBit:%d, stop pos:%d, numBits:%d",iii,lastBit,i,bitnum);
227 //move BitStream back to GraphBuffer
228 /*
229 ClearGraph(0);
230 for (i=0; i < bitnum; ++i){
231 GraphBuffer[i]=BitStream[i];
cd48c19c 232 }
eb191de6 233 GraphTraceLen=bitnum;
234 RepaintGraphWindow();
235 */
236 //output
237 if (errCnt>0){
238 PrintAndLog("# Errors during Demoding (shown as 77 in bit stream): %d",errCnt);
e888ed8e 239 }
eb191de6 240 PrintAndLog("ASK/Manchester decoded bitstream:");
241 // Now output the bitstream to the scrollback by line of 16 bits
242 printBitStream(BitStream,BitLen);
243 uint64_t lo =0;
244 lo = Em410xDecode(BitStream,BitLen);
245 printEM410x(lo);
246
247 return 0;
248}
249
250//by marshmellow
251//biphase demod = 10 (or 01)=1 / 00 (or 11)=0
252
253
254//by marshmellow
255//manchester demod
256//stricktly take 10 and 01 and convert to 0 and 1
257int Cmdmandecoderaw(const char *Cmd)
258{
259 int i =0;
260 int errCnt=0;
261 int bitnum=0;
262 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
263 int high=0,low=0;
264 for (;i<GraphTraceLen;++i){
265 if (GraphBuffer[i]>high) high=GraphBuffer[i];
266 else if(GraphBuffer[i]<low) low=GraphBuffer[i];
267 BitStream[i]=GraphBuffer[i];
268 }
269 if (high>1 || low <0 ){
270 PrintAndLog("Error: please raw demod the wave first then mancheseter raw decode");
271 return 0;
272 }
273 bitnum=i;
274 errCnt=manrawdemod(BitStream,&bitnum);
275 PrintAndLog("Manchester Decoded - # errors:%d - data:",errCnt);
276 printBitStream(BitStream,bitnum);
277 if (errCnt==0){
278 //put back in graphbuffer
2fc2150e 279 ClearGraph(0);
eb191de6 280 for (i=0; i<bitnum;++i){
2fc2150e 281 GraphBuffer[i]=BitStream[i];
eb191de6 282 }
2fc2150e 283 GraphTraceLen=bitnum;
284 RepaintGraphWindow();
eb191de6 285 uint64_t id = 0;
286 id = Em410xDecode(BitStream,i);
287 printEM410x(id);
288 }
289 return 0;
290}
291
292//by marshmellow
293//takes 2 arguments - clock and invert both as integers
294//attempts to demodulate ask only
295//prints binary found and saves in graphbuffer for further commands
296int Cmdaskrawdemod(const char *Cmd)
297{
298 uint32_t i;
299 int invert=0;
300 int clk=0;
301 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
302 sscanf(Cmd, "%i %i", &clk, &invert);
303 if (invert != 0 && invert != 1) {
304 PrintAndLog("Invalid argument: %s", Cmd);
305 return 0;
306 }
307 int BitLen = getFromGraphBuf(BitStream);
308 int errCnt=0;
309 errCnt = askrawdemod(BitStream, &BitLen,&clk,&invert);
310 if (errCnt==-1){ //throw away static - allow 1 and -1 (in case of threshold command first)
311 PrintAndLog("no data found");
312 return 0;
313 }
314 PrintAndLog("Using Clock: %d and invert=%d",clk,invert);
315 //PrintAndLog("Data start pos:%d, lastBit:%d, stop pos:%d, numBits:%d",iii,lastBit,i,bitnum);
316 //move BitStream back to GraphBuffer
317
318 ClearGraph(0);
319 for (i=0; i < BitLen; ++i){
320 GraphBuffer[i]=BitStream[i];
321 }
322 GraphTraceLen=BitLen;
323 RepaintGraphWindow();
324
2fc2150e 325 //output
eb191de6 326 if (errCnt>0){
327 PrintAndLog("# Errors during Demoding (shown as 77 in bit stream): %d",errCnt);
328 }
329 PrintAndLog("ASK demoded bitstream:");
330 // Now output the bitstream to the scrollback by line of 16 bits
331 printBitStream(BitStream,BitLen);
332
e888ed8e 333 return 0;
334}
335
7fe9b0b7 336int CmdAutoCorr(const char *Cmd)
337{
338 static int CorrelBuffer[MAX_GRAPH_TRACE_LEN];
339
340 int window = atoi(Cmd);
341
342 if (window == 0) {
343 PrintAndLog("needs a window");
344 return 0;
345 }
346 if (window >= GraphTraceLen) {
347 PrintAndLog("window must be smaller than trace (%d samples)",
348 GraphTraceLen);
349 return 0;
350 }
351
352 PrintAndLog("performing %d correlations", GraphTraceLen - window);
353
354 for (int i = 0; i < GraphTraceLen - window; ++i) {
355 int sum = 0;
356 for (int j = 0; j < window; ++j) {
357 sum += (GraphBuffer[j]*GraphBuffer[i + j]) / 256;
358 }
359 CorrelBuffer[i] = sum;
360 }
361 GraphTraceLen = GraphTraceLen - window;
362 memcpy(GraphBuffer, CorrelBuffer, GraphTraceLen * sizeof (int));
363
364 RepaintGraphWindow();
365 return 0;
366}
367
368int CmdBitsamples(const char *Cmd)
369{
370 int cnt = 0;
90d74dc2 371 uint8_t got[12288];
372
373 GetFromBigBuf(got,sizeof(got),0);
374 WaitForResponse(CMD_ACK,NULL);
7fe9b0b7 375
90d74dc2 376 for (int j = 0; j < sizeof(got); j++) {
7fe9b0b7 377 for (int k = 0; k < 8; k++) {
90d74dc2 378 if(got[j] & (1 << (7 - k))) {
7fe9b0b7 379 GraphBuffer[cnt++] = 1;
380 } else {
381 GraphBuffer[cnt++] = 0;
382 }
383 }
7fe9b0b7 384 }
385 GraphTraceLen = cnt;
386 RepaintGraphWindow();
387 return 0;
388}
389
390/*
391 * Convert to a bitstream
392 */
393int CmdBitstream(const char *Cmd)
394{
395 int i, j;
396 int bit;
397 int gtl;
398 int clock;
399 int low = 0;
400 int high = 0;
401 int hithigh, hitlow, first;
402
403 /* Detect high and lows and clock */
404 for (i = 0; i < GraphTraceLen; ++i)
405 {
406 if (GraphBuffer[i] > high)
407 high = GraphBuffer[i];
408 else if (GraphBuffer[i] < low)
409 low = GraphBuffer[i];
410 }
411
412 /* Get our clock */
413 clock = GetClock(Cmd, high, 1);
414 gtl = ClearGraph(0);
415
416 bit = 0;
417 for (i = 0; i < (int)(gtl / clock); ++i)
418 {
419 hithigh = 0;
420 hitlow = 0;
421 first = 1;
422 /* Find out if we hit both high and low peaks */
423 for (j = 0; j < clock; ++j)
424 {
425 if (GraphBuffer[(i * clock) + j] == high)
426 hithigh = 1;
427 else if (GraphBuffer[(i * clock) + j] == low)
428 hitlow = 1;
429 /* it doesn't count if it's the first part of our read
430 because it's really just trailing from the last sequence */
431 if (first && (hithigh || hitlow))
432 hithigh = hitlow = 0;
433 else
434 first = 0;
435
436 if (hithigh && hitlow)
437 break;
438 }
439
440 /* If we didn't hit both high and low peaks, we had a bit transition */
441 if (!hithigh || !hitlow)
442 bit ^= 1;
443
444 AppendGraph(0, clock, bit);
445// for (j = 0; j < (int)(clock/2); j++)
446// GraphBuffer[(i * clock) + j] = bit ^ 1;
447// for (j = (int)(clock/2); j < clock; j++)
448// GraphBuffer[(i * clock) + j] = bit;
449 }
450
451 RepaintGraphWindow();
452 return 0;
453}
454
455int CmdBuffClear(const char *Cmd)
456{
457 UsbCommand c = {CMD_BUFF_CLEAR};
458 SendCommand(&c);
459 ClearGraph(true);
460 return 0;
461}
462
463int CmdDec(const char *Cmd)
464{
465 for (int i = 0; i < (GraphTraceLen / 2); ++i)
466 GraphBuffer[i] = GraphBuffer[i * 2];
467 GraphTraceLen /= 2;
468 PrintAndLog("decimated by 2");
469 RepaintGraphWindow();
470 return 0;
471}
472
473/* Print our clock rate */
474int CmdDetectClockRate(const char *Cmd)
475{
476 int clock = DetectClock(0);
477 PrintAndLog("Auto-detected clock rate: %d", clock);
478 return 0;
479}
eb191de6 480/*
481uint32_t bytebits_to_byte(uint8_t *src, int numbits)
b3b70669 482{
483 uint32_t num = 0;
484 for(int i = 0 ; i < numbits ; i++)
485 {
486 num = (num << 1) | (*src);
487 src++;
488 }
489 return num;
490}
eb191de6 491*/
2fc2150e 492//by marshmellow
eb191de6 493//fsk raw demod and print binary
494//takes 2 arguments - Clock and invert
495//defaults: clock = 50, invert=0
e888ed8e 496int CmdFSKrawdemod(const char *Cmd)
b3b70669 497{
eb191de6 498 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
b3b70669 499 //set defaults
500 uint8_t rfLen = 50;
501 uint8_t invert=0;
502 //set options from parameters entered with the command
503 if (strlen(Cmd)>0 && strlen(Cmd)<=2) {
504 rfLen=param_get8(Cmd, 0); //if rfLen option only is used
505 if (rfLen==1){
506 invert=1; //if invert option only is used
507 rfLen = 50;
508 } else if(rfLen==0) rfLen=50;
509 }
510 if (strlen(Cmd)>2) {
511 rfLen=param_get8(Cmd, 0); //if both options are used
512 invert=param_get8(Cmd,1);
513 }
514 PrintAndLog("Args invert: %d \nClock:%d",invert,rfLen);
eb191de6 515 uint32_t i=0;
516 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
517 uint32_t BitLen = getFromGraphBuf(BitStream);
518 int size = fskdemod(BitStream,BitLen,rfLen,invert);
b3b70669 519
520 PrintAndLog("FSK decoded bitstream:");
eb191de6 521 ClearGraph(0);
522 for (i=0;i<size;++i){
523 GraphBuffer[i]=BitStream[i];
524 }
525 GraphTraceLen=size;
526 RepaintGraphWindow();
527
b3b70669 528 // Now output the bitstream to the scrollback by line of 16 bits
529 if(size > (7*32)+2) size = (7*32)+2; //only output a max of 7 blocks of 32 bits most tags will have full bit stream inside that sample size
eb191de6 530 printBitStream(BitStream,size);
b3b70669 531 return 0;
532}
533
eb191de6 534//by marshmellow (based on existing demod + holiman's refactor)
535//HID Prox demod - FSK RF/50 with preamble of 00011101 (then manchester encoded)
536//print full HID Prox ID and some bit format details if found
b3b70669 537int CmdFSKdemodHID(const char *Cmd)
538{
539 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
b3b70669 540 uint32_t hi2=0, hi=0, lo=0;
541
eb191de6 542 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
543 uint32_t BitLen = getFromGraphBuf(BitStream);
b3b70669 544 //get binary from fsk wave
eb191de6 545 size_t size = HIDdemodFSK(BitStream,BitLen,&hi2,&hi,&lo);
546 if (size<0){
547 PrintAndLog("Error demoding fsk");
548 return 0;
549 }
550 if (hi2 != 0){ //extra large HID tags
551 PrintAndLog("TAG ID: %x%08x%08x (%d)",
552 (unsigned int) hi2, (unsigned int) hi, (unsigned int) lo, (unsigned int) (lo>>1) & 0xFFFF);
553 }
554 else { //standard HID tags <38 bits
555 //Dbprintf("TAG ID: %x%08x (%d)",(unsigned int) hi, (unsigned int) lo, (unsigned int) (lo>>1) & 0xFFFF); //old print cmd
556 uint8_t bitlen = 0;
557 uint32_t fc = 0;
558 uint32_t cardnum = 0;
559 if (((hi>>5)&1)==1){//if bit 38 is set then < 37 bit format is used
560 uint32_t lo2=0;
561 lo2=(((hi & 15) << 12) | (lo>>20)); //get bits 21-37 to check for format len bit
562 uint8_t idx3 = 1;
563 while(lo2>1){ //find last bit set to 1 (format len bit)
564 lo2=lo2>>1;
565 idx3++;
b3b70669 566 }
eb191de6 567 bitlen =idx3+19;
568 fc =0;
569 cardnum=0;
570 if(bitlen==26){
571 cardnum = (lo>>1)&0xFFFF;
572 fc = (lo>>17)&0xFF;
573 }
574 if(bitlen==37){
575 cardnum = (lo>>1)&0x7FFFF;
576 fc = ((hi&0xF)<<12)|(lo>>20);
577 }
578 if(bitlen==34){
579 cardnum = (lo>>1)&0xFFFF;
580 fc= ((hi&1)<<15)|(lo>>17);
581 }
582 if(bitlen==35){
583 cardnum = (lo>>1)&0xFFFFF;
584 fc = ((hi&1)<<11)|(lo>>21);
b3b70669 585 }
b3b70669 586 }
eb191de6 587 else { //if bit 38 is not set then 37 bit format is used
588 bitlen= 37;
589 fc =0;
590 cardnum=0;
591 if(bitlen==37){
592 cardnum = (lo>>1)&0x7FFFF;
593 fc = ((hi&0xF)<<12)|(lo>>20);
594 }
595 }
596 PrintAndLog("TAG ID: %x%08x (%d) - Format Len: %dbit - FC: %d - Card: %d",
597 (unsigned int) hi, (unsigned int) lo, (unsigned int) (lo>>1) & 0xFFFF,
598 (unsigned int) bitlen, (unsigned int) fc, (unsigned int) cardnum);
599 return 0;
b3b70669 600 }
b3b70669 601 return 0;
602}
603
2fc2150e 604//by marshmellow
eb191de6 605//IO-Prox demod - FSK RF/64 with preamble of 000000001
606//print ioprox ID and some format details
b3b70669 607int CmdFSKdemodIO(const char *Cmd)
608{
609 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
610 //set defaults
eb191de6 611 int idx=0;
b3b70669 612 //test samples are not just noise
613 if (GraphTraceLen < 64) return 0;
eb191de6 614 uint8_t BitStream[MAX_GRAPH_TRACE_LEN]={0};
615 uint32_t BitLen = getFromGraphBuf(BitStream);
616 //get binary from fsk wave
617 idx = IOdemodFSK(BitStream,BitLen);
618 if (idx<0){
619 PrintAndLog("Error demoding fsk");
620 return 0;
621 }
622 if (idx==0){
623 PrintAndLog("IO Prox Data not found - FSK Data:");
624 printBitStream(BitStream,92);
b3b70669 625 }
b3b70669 626 //Index map
627 //0 10 20 30 40 50 60
628 //| | | | | | |
629 //01234567 8 90123456 7 89012345 6 78901234 5 67890123 4 56789012 3 45678901 23
630 //-----------------------------------------------------------------------------
631 //00000000 0 11110000 1 facility 1 version* 1 code*one 1 code*two 1 ???????? 11
632 //
633 //XSF(version)facility:codeone+codetwo (raw)
634 //Handle the data
eb191de6 635
636 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream[idx], BitStream[idx+1], BitStream[idx+2], BitStream[idx+3], BitStream[idx+4], BitStream[idx+5], BitStream[idx+6], BitStream[idx+7], BitStream[idx+8]);
637 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream[idx+9], BitStream[idx+10], BitStream[idx+11],BitStream[idx+12],BitStream[idx+13],BitStream[idx+14],BitStream[idx+15],BitStream[idx+16],BitStream[idx+17]);
638 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream[idx+18], BitStream[idx+19], BitStream[idx+20],BitStream[idx+21],BitStream[idx+22],BitStream[idx+23],BitStream[idx+24],BitStream[idx+25],BitStream[idx+26]);
639 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream[idx+27], BitStream[idx+28], BitStream[idx+29],BitStream[idx+30],BitStream[idx+31],BitStream[idx+32],BitStream[idx+33],BitStream[idx+34],BitStream[idx+35]);
640 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream[idx+36], BitStream[idx+37], BitStream[idx+38],BitStream[idx+39],BitStream[idx+40],BitStream[idx+41],BitStream[idx+42],BitStream[idx+43],BitStream[idx+44]);
641 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream[idx+45], BitStream[idx+46], BitStream[idx+47],BitStream[idx+48],BitStream[idx+49],BitStream[idx+50],BitStream[idx+51],BitStream[idx+52],BitStream[idx+53]);
642 PrintAndLog("%d%d%d%d%d%d%d%d %d%d",BitStream[idx+54],BitStream[idx+55],BitStream[idx+56],BitStream[idx+57],BitStream[idx+58],BitStream[idx+59],BitStream[idx+60],BitStream[idx+61],BitStream[idx+62],BitStream[idx+63]);
643
644 uint32_t code = bytebits_to_byte(BitStream+idx,32);
645 uint32_t code2 = bytebits_to_byte(BitStream+idx+32,32);
646 short version = bytebits_to_byte(BitStream+idx+27,8); //14,4
647 uint8_t facilitycode = bytebits_to_byte(BitStream+idx+19,8) ;
648 uint16_t number = (bytebits_to_byte(BitStream+idx+36,8)<<8)|(bytebits_to_byte(BitStream+idx+45,8)); //36,9
649
650 PrintAndLog("XSF(%02d)%02x:%d (%08x%08x)",version,facilitycode,number,code,code2);
b3b70669 651 return 0;
652}
e888ed8e 653int CmdFSKdemod(const char *Cmd) //old CmdFSKdemod needs updating
7fe9b0b7 654{
655 static const int LowTone[] = {
656 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
657 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
658 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
659 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
660 1, 1, 1, 1, 1, -1, -1, -1, -1, -1
661 };
662 static const int HighTone[] = {
663 1, 1, 1, 1, 1, -1, -1, -1, -1,
664 1, 1, 1, 1, -1, -1, -1, -1,
665 1, 1, 1, 1, -1, -1, -1, -1,
666 1, 1, 1, 1, -1, -1, -1, -1,
667 1, 1, 1, 1, -1, -1, -1, -1,
668 1, 1, 1, 1, -1, -1, -1, -1, -1,
669 };
670
671 int lowLen = sizeof (LowTone) / sizeof (int);
672 int highLen = sizeof (HighTone) / sizeof (int);
b3b70669 673 int convLen = (highLen > lowLen) ? highLen : lowLen; //if highlen > lowLen then highlen else lowlen
7fe9b0b7 674 uint32_t hi = 0, lo = 0;
675
676 int i, j;
677 int minMark = 0, maxMark = 0;
b3b70669 678
7fe9b0b7 679 for (i = 0; i < GraphTraceLen - convLen; ++i) {
680 int lowSum = 0, highSum = 0;
681
682 for (j = 0; j < lowLen; ++j) {
683 lowSum += LowTone[j]*GraphBuffer[i+j];
684 }
685 for (j = 0; j < highLen; ++j) {
686 highSum += HighTone[j] * GraphBuffer[i + j];
687 }
688 lowSum = abs(100 * lowSum / lowLen);
689 highSum = abs(100 * highSum / highLen);
690 GraphBuffer[i] = (highSum << 16) | lowSum;
691 }
692
693 for(i = 0; i < GraphTraceLen - convLen - 16; ++i) {
694 int lowTot = 0, highTot = 0;
695 // 10 and 8 are f_s divided by f_l and f_h, rounded
696 for (j = 0; j < 10; ++j) {
697 lowTot += (GraphBuffer[i+j] & 0xffff);
698 }
699 for (j = 0; j < 8; j++) {
700 highTot += (GraphBuffer[i + j] >> 16);
701 }
702 GraphBuffer[i] = lowTot - highTot;
703 if (GraphBuffer[i] > maxMark) maxMark = GraphBuffer[i];
704 if (GraphBuffer[i] < minMark) minMark = GraphBuffer[i];
705 }
706
707 GraphTraceLen -= (convLen + 16);
708 RepaintGraphWindow();
709
b3b70669 710 // Find bit-sync (3 lo followed by 3 high) (HID ONLY)
7fe9b0b7 711 int max = 0, maxPos = 0;
712 for (i = 0; i < 6000; ++i) {
713 int dec = 0;
714 for (j = 0; j < 3 * lowLen; ++j) {
715 dec -= GraphBuffer[i + j];
716 }
717 for (; j < 3 * (lowLen + highLen ); ++j) {
718 dec += GraphBuffer[i + j];
719 }
720 if (dec > max) {
721 max = dec;
722 maxPos = i;
723 }
724 }
725
726 // place start of bit sync marker in graph
727 GraphBuffer[maxPos] = maxMark;
728 GraphBuffer[maxPos + 1] = minMark;
729
730 maxPos += j;
731
732 // place end of bit sync marker in graph
733 GraphBuffer[maxPos] = maxMark;
734 GraphBuffer[maxPos+1] = minMark;
735
736 PrintAndLog("actual data bits start at sample %d", maxPos);
737 PrintAndLog("length %d/%d", highLen, lowLen);
738
739 uint8_t bits[46];
740 bits[sizeof(bits)-1] = '\0';
741
742 // find bit pairs and manchester decode them
743 for (i = 0; i < arraylen(bits) - 1; ++i) {
744 int dec = 0;
745 for (j = 0; j < lowLen; ++j) {
746 dec -= GraphBuffer[maxPos + j];
747 }
748 for (; j < lowLen + highLen; ++j) {
749 dec += GraphBuffer[maxPos + j];
750 }
751 maxPos += j;
752 // place inter bit marker in graph
753 GraphBuffer[maxPos] = maxMark;
754 GraphBuffer[maxPos + 1] = minMark;
755
756 // hi and lo form a 64 bit pair
757 hi = (hi << 1) | (lo >> 31);
758 lo = (lo << 1);
759 // store decoded bit as binary (in hi/lo) and text (in bits[])
760 if(dec < 0) {
761 bits[i] = '1';
762 lo |= 1;
763 } else {
764 bits[i] = '0';
765 }
766 }
767 PrintAndLog("bits: '%s'", bits);
768 PrintAndLog("hex: %08x %08x", hi, lo);
769 return 0;
770}
e888ed8e 771
7fe9b0b7 772int CmdGrid(const char *Cmd)
773{
774 sscanf(Cmd, "%i %i", &PlotGridX, &PlotGridY);
7ddb9900 775 PlotGridXdefault= PlotGridX;
776 PlotGridYdefault= PlotGridY;
7fe9b0b7 777 RepaintGraphWindow();
778 return 0;
779}
780
781int CmdHexsamples(const char *Cmd)
782{
4961e292 783 int i, j;
7fe9b0b7 784 int requested = 0;
785 int offset = 0;
4961e292 786 char string_buf[25];
787 char* string_ptr = string_buf;
90d74dc2 788 uint8_t got[40000];
4961e292 789
790 sscanf(Cmd, "%i %i", &requested, &offset);
90d74dc2 791
4961e292 792 /* if no args send something */
793 if (requested == 0) {
90d74dc2 794 requested = 8;
795 }
90d74dc2 796 if (offset + requested > sizeof(got)) {
797 PrintAndLog("Tried to read past end of buffer, <bytes> + <offset> > 40000");
4961e292 798 return 0;
799 }
90d74dc2 800
4961e292 801 GetFromBigBuf(got,requested,offset);
90d74dc2 802 WaitForResponse(CMD_ACK,NULL);
803
4961e292 804 i = 0;
805 for (j = 0; j < requested; j++) {
806 i++;
807 string_ptr += sprintf(string_ptr, "%02x ", got[j]);
808 if (i == 8) {
809 *(string_ptr - 1) = '\0'; // remove the trailing space
810 PrintAndLog("%s", string_buf);
811 string_buf[0] = '\0';
812 string_ptr = string_buf;
813 i = 0;
814 }
815 if (j == requested - 1 && string_buf[0] != '\0') { // print any remaining bytes
816 *(string_ptr - 1) = '\0';
817 PrintAndLog("%s", string_buf);
818 string_buf[0] = '\0';
819 }
7fe9b0b7 820 }
821 return 0;
822}
823
7fe9b0b7 824int CmdHide(const char *Cmd)
825{
826 HideGraphWindow();
827 return 0;
828}
829
830int CmdHpf(const char *Cmd)
831{
832 int i;
833 int accum = 0;
834
835 for (i = 10; i < GraphTraceLen; ++i)
836 accum += GraphBuffer[i];
837 accum /= (GraphTraceLen - 10);
838 for (i = 0; i < GraphTraceLen; ++i)
839 GraphBuffer[i] -= accum;
840
841 RepaintGraphWindow();
842 return 0;
843}
844
8d183c53 845int CmdSamples(const char *Cmd)
7fe9b0b7 846{
847 int cnt = 0;
848 int n;
90d74dc2 849 uint8_t got[40000];
850
7fe9b0b7 851 n = strtol(Cmd, NULL, 0);
b3b70669 852 if (n == 0) n = 6000;
90d74dc2 853 if (n > sizeof(got)) n = sizeof(got);
a2847518 854
7fe9b0b7 855 PrintAndLog("Reading %d samples\n", n);
90d74dc2 856 GetFromBigBuf(got,n,0);
a2847518 857 WaitForResponse(CMD_ACK,NULL);
90d74dc2 858 for (int j = 0; j < n; j++) {
a2847518 859 GraphBuffer[cnt++] = ((int)got[j]) - 128;
7fe9b0b7 860 }
a2847518 861
7fe9b0b7 862 PrintAndLog("Done!\n");
90d74dc2 863 GraphTraceLen = n;
7fe9b0b7 864 RepaintGraphWindow();
865 return 0;
866}
867
d6a120a2
MHS
868int CmdTuneSamples(const char *Cmd)
869{
870 int cnt = 0;
871 int n = 255;
872 uint8_t got[255];
873
874 PrintAndLog("Reading %d samples\n", n);
875 GetFromBigBuf(got,n,7256); // armsrc/apps.h: #define FREE_BUFFER_OFFSET 7256
876 WaitForResponse(CMD_ACK,NULL);
877 for (int j = 0; j < n; j++) {
878 GraphBuffer[cnt++] = ((int)got[j]) - 128;
879 }
880
881 PrintAndLog("Done! Divisor 89 is 134khz, 95 is 125khz.\n");
882 PrintAndLog("\n");
883 GraphTraceLen = n;
884 RepaintGraphWindow();
885 return 0;
886}
887
7fe9b0b7 888int CmdLoad(const char *Cmd)
889{
c6f1fb9d 890 FILE *f = fopen(Cmd, "r");
7fe9b0b7 891 if (!f) {
c6f1fb9d 892 PrintAndLog("couldn't open '%s'", Cmd);
7fe9b0b7 893 return 0;
894 }
895
896 GraphTraceLen = 0;
897 char line[80];
898 while (fgets(line, sizeof (line), f)) {
899 GraphBuffer[GraphTraceLen] = atoi(line);
900 GraphTraceLen++;
901 }
902 fclose(f);
903 PrintAndLog("loaded %d samples", GraphTraceLen);
904 RepaintGraphWindow();
905 return 0;
906}
907
908int CmdLtrim(const char *Cmd)
909{
910 int ds = atoi(Cmd);
911
912 for (int i = ds; i < GraphTraceLen; ++i)
913 GraphBuffer[i-ds] = GraphBuffer[i];
914 GraphTraceLen -= ds;
915
916 RepaintGraphWindow();
917 return 0;
918}
919
920/*
921 * Manchester demodulate a bitstream. The bitstream needs to be already in
922 * the GraphBuffer as 0 and 1 values
923 *
924 * Give the clock rate as argument in order to help the sync - the algorithm
925 * resyncs at each pulse anyway.
926 *
927 * Not optimized by any means, this is the 1st time I'm writing this type of
928 * routine, feel free to improve...
929 *
930 * 1st argument: clock rate (as number of samples per clock rate)
931 * Typical values can be 64, 32, 128...
932 */
933int CmdManchesterDemod(const char *Cmd)
934{
935 int i, j, invert= 0;
936 int bit;
937 int clock;
fddf220a 938 int lastval = 0;
7fe9b0b7 939 int low = 0;
940 int high = 0;
941 int hithigh, hitlow, first;
942 int lc = 0;
943 int bitidx = 0;
944 int bit2idx = 0;
945 int warnings = 0;
946
947 /* check if we're inverting output */
c6f1fb9d 948 if (*Cmd == 'i')
7fe9b0b7 949 {
950 PrintAndLog("Inverting output");
951 invert = 1;
fffad860 952 ++Cmd;
7fe9b0b7 953 do
954 ++Cmd;
955 while(*Cmd == ' '); // in case a 2nd argument was given
956 }
957
958 /* Holds the decoded bitstream: each clock period contains 2 bits */
959 /* later simplified to 1 bit after manchester decoding. */
960 /* Add 10 bits to allow for noisy / uncertain traces without aborting */
961 /* int BitStream[GraphTraceLen*2/clock+10]; */
962
963 /* But it does not work if compiling on WIndows: therefore we just allocate a */
964 /* large array */
90e278d3 965 uint8_t BitStream[MAX_GRAPH_TRACE_LEN] = {0};
7fe9b0b7 966
967 /* Detect high and lows */
968 for (i = 0; i < GraphTraceLen; i++)
969 {
970 if (GraphBuffer[i] > high)
971 high = GraphBuffer[i];
972 else if (GraphBuffer[i] < low)
973 low = GraphBuffer[i];
974 }
975
976 /* Get our clock */
977 clock = GetClock(Cmd, high, 1);
978
979 int tolerance = clock/4;
980
981 /* Detect first transition */
982 /* Lo-Hi (arbitrary) */
983 /* skip to the first high */
984 for (i= 0; i < GraphTraceLen; i++)
985 if (GraphBuffer[i] == high)
986 break;
987 /* now look for the first low */
988 for (; i < GraphTraceLen; i++)
989 {
990 if (GraphBuffer[i] == low)
991 {
992 lastval = i;
993 break;
994 }
995 }
996
997 /* If we're not working with 1/0s, demod based off clock */
998 if (high != 1)
999 {
1000 bit = 0; /* We assume the 1st bit is zero, it may not be
1001 * the case: this routine (I think) has an init problem.
1002 * Ed.
1003 */
1004 for (; i < (int)(GraphTraceLen / clock); i++)
1005 {
1006 hithigh = 0;
1007 hitlow = 0;
1008 first = 1;
1009
1010 /* Find out if we hit both high and low peaks */
1011 for (j = 0; j < clock; j++)
1012 {
1013 if (GraphBuffer[(i * clock) + j] == high)
1014 hithigh = 1;
1015 else if (GraphBuffer[(i * clock) + j] == low)
1016 hitlow = 1;
1017
1018 /* it doesn't count if it's the first part of our read
1019 because it's really just trailing from the last sequence */
1020 if (first && (hithigh || hitlow))
1021 hithigh = hitlow = 0;
1022 else
1023 first = 0;
1024
1025 if (hithigh && hitlow)
1026 break;
1027 }
1028
1029 /* If we didn't hit both high and low peaks, we had a bit transition */
1030 if (!hithigh || !hitlow)
1031 bit ^= 1;
1032
1033 BitStream[bit2idx++] = bit ^ invert;
1034 }
1035 }
1036
1037 /* standard 1/0 bitstream */
1038 else
1039 {
1040
1041 /* Then detect duration between 2 successive transitions */
1042 for (bitidx = 1; i < GraphTraceLen; i++)
1043 {
1044 if (GraphBuffer[i-1] != GraphBuffer[i])
1045 {
b3b70669 1046 lc = i-lastval;
1047 lastval = i;
1048
1049 // Error check: if bitidx becomes too large, we do not
1050 // have a Manchester encoded bitstream or the clock is really
1051 // wrong!
1052 if (bitidx > (GraphTraceLen*2/clock+8) ) {
1053 PrintAndLog("Error: the clock you gave is probably wrong, aborting.");
1054 return 0;
1055 }
1056 // Then switch depending on lc length:
1057 // Tolerance is 1/4 of clock rate (arbitrary)
1058 if (abs(lc-clock/2) < tolerance) {
1059 // Short pulse : either "1" or "0"
1060 BitStream[bitidx++]=GraphBuffer[i-1];
1061 } else if (abs(lc-clock) < tolerance) {
1062 // Long pulse: either "11" or "00"
1063 BitStream[bitidx++]=GraphBuffer[i-1];
1064 BitStream[bitidx++]=GraphBuffer[i-1];
1065 } else {
7fe9b0b7 1066 // Error
1067 warnings++;
b3b70669 1068 PrintAndLog("Warning: Manchester decode error for pulse width detection.");
1069 PrintAndLog("(too many of those messages mean either the stream is not Manchester encoded, or clock is wrong)");
7fe9b0b7 1070
1071 if (warnings > 10)
1072 {
1073 PrintAndLog("Error: too many detection errors, aborting.");
1074 return 0;
1075 }
1076 }
1077 }
1078 }
1079
1080 // At this stage, we now have a bitstream of "01" ("1") or "10" ("0"), parse it into final decoded bitstream
1081 // Actually, we overwrite BitStream with the new decoded bitstream, we just need to be careful
1082 // to stop output at the final bitidx2 value, not bitidx
1083 for (i = 0; i < bitidx; i += 2) {
1084 if ((BitStream[i] == 0) && (BitStream[i+1] == 1)) {
1085 BitStream[bit2idx++] = 1 ^ invert;
b3b70669 1086 } else if ((BitStream[i] == 1) && (BitStream[i+1] == 0)) {
1087 BitStream[bit2idx++] = 0 ^ invert;
1088 } else {
1089 // We cannot end up in this state, this means we are unsynchronized,
1090 // move up 1 bit:
1091 i++;
7fe9b0b7 1092 warnings++;
b3b70669 1093 PrintAndLog("Unsynchronized, resync...");
1094 PrintAndLog("(too many of those messages mean the stream is not Manchester encoded)");
7fe9b0b7 1095
1096 if (warnings > 10)
1097 {
1098 PrintAndLog("Error: too many decode errors, aborting.");
1099 return 0;
1100 }
1101 }
1102 }
1103 }
1104
1105 PrintAndLog("Manchester decoded bitstream");
1106 // Now output the bitstream to the scrollback by line of 16 bits
1107 for (i = 0; i < (bit2idx-16); i+=16) {
1108 PrintAndLog("%i %i %i %i %i %i %i %i %i %i %i %i %i %i %i %i",
1109 BitStream[i],
1110 BitStream[i+1],
1111 BitStream[i+2],
1112 BitStream[i+3],
1113 BitStream[i+4],
1114 BitStream[i+5],
1115 BitStream[i+6],
1116 BitStream[i+7],
1117 BitStream[i+8],
1118 BitStream[i+9],
1119 BitStream[i+10],
1120 BitStream[i+11],
1121 BitStream[i+12],
1122 BitStream[i+13],
1123 BitStream[i+14],
1124 BitStream[i+15]);
1125 }
1126 return 0;
1127}
1128
1129/* Modulate our data into manchester */
1130int CmdManchesterMod(const char *Cmd)
1131{
1132 int i, j;
1133 int clock;
1134 int bit, lastbit, wave;
1135
1136 /* Get our clock */
1137 clock = GetClock(Cmd, 0, 1);
1138
1139 wave = 0;
1140 lastbit = 1;
1141 for (i = 0; i < (int)(GraphTraceLen / clock); i++)
1142 {
1143 bit = GraphBuffer[i * clock] ^ 1;
1144
1145 for (j = 0; j < (int)(clock/2); j++)
1146 GraphBuffer[(i * clock) + j] = bit ^ lastbit ^ wave;
1147 for (j = (int)(clock/2); j < clock; j++)
1148 GraphBuffer[(i * clock) + j] = bit ^ lastbit ^ wave ^ 1;
1149
1150 /* Keep track of how we start our wave and if we changed or not this time */
1151 wave ^= bit ^ lastbit;
1152 lastbit = bit;
1153 }
1154
1155 RepaintGraphWindow();
1156 return 0;
1157}
1158
1159int CmdNorm(const char *Cmd)
1160{
1161 int i;
1162 int max = INT_MIN, min = INT_MAX;
1163
1164 for (i = 10; i < GraphTraceLen; ++i) {
1165 if (GraphBuffer[i] > max)
1166 max = GraphBuffer[i];
1167 if (GraphBuffer[i] < min)
1168 min = GraphBuffer[i];
1169 }
1170
1171 if (max != min) {
1172 for (i = 0; i < GraphTraceLen; ++i) {
1173 GraphBuffer[i] = (GraphBuffer[i] - ((max + min) / 2)) * 1000 /
1174 (max - min);
1175 }
1176 }
1177 RepaintGraphWindow();
1178 return 0;
1179}
1180
1181int CmdPlot(const char *Cmd)
1182{
1183 ShowGraphWindow();
1184 return 0;
1185}
1186
1187int CmdSave(const char *Cmd)
1188{
1189 FILE *f = fopen(Cmd, "w");
1190 if(!f) {
1191 PrintAndLog("couldn't open '%s'", Cmd);
1192 return 0;
1193 }
1194 int i;
1195 for (i = 0; i < GraphTraceLen; i++) {
1196 fprintf(f, "%d\n", GraphBuffer[i]);
1197 }
1198 fclose(f);
1199 PrintAndLog("saved to '%s'", Cmd);
1200 return 0;
1201}
1202
1203int CmdScale(const char *Cmd)
1204{
1205 CursorScaleFactor = atoi(Cmd);
1206 if (CursorScaleFactor == 0) {
1207 PrintAndLog("bad, can't have zero scale");
1208 CursorScaleFactor = 1;
1209 }
1210 RepaintGraphWindow();
1211 return 0;
1212}
1213
1214int CmdThreshold(const char *Cmd)
1215{
1216 int threshold = atoi(Cmd);
1217
1218 for (int i = 0; i < GraphTraceLen; ++i) {
1219 if (GraphBuffer[i] >= threshold)
1220 GraphBuffer[i] = 1;
1221 else
7bb9d33e 1222 GraphBuffer[i] = -1;
7fe9b0b7 1223 }
1224 RepaintGraphWindow();
1225 return 0;
1226}
1227
d51b2eda
MHS
1228int CmdDirectionalThreshold(const char *Cmd)
1229{
1230 int8_t upThres = param_get8(Cmd, 0);
1231 int8_t downThres = param_get8(Cmd, 1);
1232
1233 printf("Applying Up Threshold: %d, Down Threshold: %d\n", upThres, downThres);
1234
1235 int lastValue = GraphBuffer[0];
1236 GraphBuffer[0] = 0; // Will be changed at the end, but init 0 as we adjust to last samples value if no threshold kicks in.
1237
1238 for (int i = 1; i < GraphTraceLen; ++i) {
1239 // Apply first threshold to samples heading up
1240 if (GraphBuffer[i] >= upThres && GraphBuffer[i] > lastValue)
1241 {
1242 lastValue = GraphBuffer[i]; // Buffer last value as we overwrite it.
1243 GraphBuffer[i] = 1;
1244 }
1245 // Apply second threshold to samples heading down
1246 else if (GraphBuffer[i] <= downThres && GraphBuffer[i] < lastValue)
1247 {
1248 lastValue = GraphBuffer[i]; // Buffer last value as we overwrite it.
1249 GraphBuffer[i] = -1;
1250 }
1251 else
1252 {
1253 lastValue = GraphBuffer[i]; // Buffer last value as we overwrite it.
1254 GraphBuffer[i] = GraphBuffer[i-1];
1255
1256 }
1257 }
1258 GraphBuffer[0] = GraphBuffer[1]; // Aline with first edited sample.
1259 RepaintGraphWindow();
1260 return 0;
1261}
1262
7fe9b0b7 1263int CmdZerocrossings(const char *Cmd)
1264{
1265 // Zero-crossings aren't meaningful unless the signal is zero-mean.
1266 CmdHpf("");
1267
1268 int sign = 1;
1269 int zc = 0;
1270 int lastZc = 0;
1271
1272 for (int i = 0; i < GraphTraceLen; ++i) {
1273 if (GraphBuffer[i] * sign >= 0) {
1274 // No change in sign, reproduce the previous sample count.
1275 zc++;
1276 GraphBuffer[i] = lastZc;
1277 } else {
1278 // Change in sign, reset the sample count.
1279 sign = -sign;
1280 GraphBuffer[i] = lastZc;
1281 if (sign > 0) {
1282 lastZc = zc;
1283 zc = 0;
1284 }
1285 }
1286 }
1287
1288 RepaintGraphWindow();
1289 return 0;
1290}
1291
1292static command_t CommandTable[] =
1293{
1294 {"help", CmdHelp, 1, "This help"},
1295 {"amp", CmdAmp, 1, "Amplify peaks"},
57c69556 1296 {"askdemod", Cmdaskdemod, 1, "<0 or 1> -- Attempt to demodulate simple ASK tags"},
9e6dd4eb 1297 {"askmandemod", Cmdaskmandemod, 1, "[clock] [invert<0 or 1>] -- Attempt to demodulate ASK/Manchester tags and output binary (args optional[clock will try Auto-detect])"},
eb191de6 1298 {"askrawdemod", Cmdaskrawdemod, 1, "[clock] [invert<0 or 1>] -- Attempt to demodulate ASK tags and output binary (args optional[clock will try Auto-detect])"},
7fe9b0b7 1299 {"autocorr", CmdAutoCorr, 1, "<window length> -- Autocorrelation over window"},
1300 {"bitsamples", CmdBitsamples, 0, "Get raw samples as bitstring"},
1301 {"bitstream", CmdBitstream, 1, "[clock rate] -- Convert waveform into a bitstream"},
1302 {"buffclear", CmdBuffClear, 1, "Clear sample buffer and graph window"},
1303 {"dec", CmdDec, 1, "Decimate samples"},
1304 {"detectclock", CmdDetectClockRate, 1, "Detect clock rate"},
e888ed8e 1305 {"fskdemod", CmdFSKdemod, 1, "Demodulate graph window as a HID FSK"},
1306 {"fskhiddemod", CmdFSKdemodHID, 1, "Demodulate graph window as a HID FSK using raw"},
1307 {"fskiodemod", CmdFSKdemodIO, 1, "Demodulate graph window as an IO Prox FSK using raw"},
1308 {"fskrawdemod", CmdFSKrawdemod, 1, "[clock rate] [invert] Demodulate graph window from FSK to binary (clock = 64 or 50)(invert = 1 or 0)"},
7fe9b0b7 1309 {"grid", CmdGrid, 1, "<x> <y> -- overlay grid on graph window, use zero value to turn off either"},
90d74dc2 1310 {"hexsamples", CmdHexsamples, 0, "<bytes> [<offset>] -- Dump big buffer as hex bytes"},
7fe9b0b7 1311 {"hide", CmdHide, 1, "Hide graph window"},
1312 {"hpf", CmdHpf, 1, "Remove DC offset from trace"},
7fe9b0b7 1313 {"load", CmdLoad, 1, "<filename> -- Load trace (to graph window"},
1314 {"ltrim", CmdLtrim, 1, "<samples> -- Trim samples from left of trace"},
1315 {"mandemod", CmdManchesterDemod, 1, "[i] [clock rate] -- Manchester demodulate binary stream (option 'i' to invert output)"},
eb191de6 1316 {"manrawdecode", Cmdmandecoderaw, 1, "Manchester decode binary stream already in graph buffer"},
7fe9b0b7 1317 {"manmod", CmdManchesterMod, 1, "[clock rate] -- Manchester modulate a binary stream"},
1318 {"norm", CmdNorm, 1, "Normalize max/min to +/-500"},
7ddb9900 1319 {"plot", CmdPlot, 1, "Show graph window (hit 'h' in window for keystroke help)"},
90d74dc2 1320 {"samples", CmdSamples, 0, "[512 - 40000] -- Get raw samples for graph window"},
d6a120a2 1321 {"tune", CmdTuneSamples, 0, "Get hw tune samples for graph window"},
7fe9b0b7 1322 {"save", CmdSave, 1, "<filename> -- Save trace (from graph window)"},
1323 {"scale", CmdScale, 1, "<int> -- Set cursor display scale"},
dbf444a1 1324 {"threshold", CmdThreshold, 1, "<threshold> -- Maximize/minimize every value in the graph window depending on threshold"},
7fe9b0b7 1325 {"zerocrossings", CmdZerocrossings, 1, "Count time between zero-crossings"},
d51b2eda 1326 {"dirthreshold", CmdDirectionalThreshold, 1, "<thres up> <thres down> -- Max rising higher up-thres/ Min falling lower down-thres, keep rest as prev."},
7fe9b0b7 1327 {NULL, NULL, 0, NULL}
1328};
1329
1330int CmdData(const char *Cmd)
1331{
1332 CmdsParse(CommandTable, Cmd);
1333 return 0;
1334}
1335
1336int CmdHelp(const char *Cmd)
1337{
1338 CmdsHelp(CommandTable);
1339 return 0;
1340}
Impressum, Datenschutz