]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlf.c
simplified lf em command structure
[proxmark3-svn] / client / cmdlf.c
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 // Low frequency commands
9 //-----------------------------------------------------------------------------
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <limits.h>
15 #include "proxmark3.h"
16 #include "cmdlf.h"
17 #include "lfdemod.h" // for psk2TOpsk1
18 #include "util.h" // for parsing cli command utils
19 #include "ui.h" // for show graph controls
20 #include "graph.h" // for graph data
21 #include "cmdparser.h" // for getting cli commands included in cmdmain.h
22 #include "cmdmain.h" // for sending cmds to device
23 #include "data.h" // for GetFromBigBuf
24 #include "cmddata.h" // for `lf search`
25 #include "cmdlfawid.h" // for awid menu
26 #include "cmdlfem4x.h" // for em4x menu
27 #include "cmdlfhid.h" // for hid menu
28 #include "cmdlfhitag.h" // for hitag menu
29 #include "cmdlfio.h" // for ioprox menu
30 #include "cmdlft55xx.h" // for t55xx menu
31 #include "cmdlfti.h" // for ti menu
32 #include "cmdlfpresco.h" // for presco menu
33 #include "cmdlfpcf7931.h"// for pcf7931 menu
34 #include "cmdlfpyramid.h"// for pyramid menu
35 #include "cmdlfviking.h" // for viking menu
36 #include "cmdlfcotag.h" // for COTAG menu
37
38
39 static int CmdHelp(const char *Cmd);
40
41
42
43 int usage_lf_cmdread(void)
44 {
45 PrintAndLog("Usage: lf cmdread d <delay period> z <zero period> o <one period> c <cmdbytes> [H] ");
46 PrintAndLog("Options: ");
47 PrintAndLog(" h This help");
48 PrintAndLog(" L Low frequency (125 KHz)");
49 PrintAndLog(" H High frequency (134 KHz)");
50 PrintAndLog(" d <delay> delay OFF period");
51 PrintAndLog(" z <zero> time period ZERO");
52 PrintAndLog(" o <one> time period ONE");
53 PrintAndLog(" c <cmd> Command bytes");
54 PrintAndLog(" ************* All periods in microseconds");
55 PrintAndLog("Examples:");
56 PrintAndLog(" lf cmdread d 80 z 100 o 200 c 11000");
57 PrintAndLog(" lf cmdread d 80 z 100 o 100 c 11000 H");
58 return 0;
59 }
60
61 /* send a command before reading */
62 int CmdLFCommandRead(const char *Cmd)
63 {
64 static char dummy[3] = {0x20,0x00,0x00};
65 UsbCommand c = {CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K};
66 bool errors = FALSE;
67 //uint8_t divisor = 95; //125khz
68 uint8_t cmdp = 0;
69 while(param_getchar(Cmd, cmdp) != 0x00)
70 {
71 switch(param_getchar(Cmd, cmdp))
72 {
73 case 'h':
74 return usage_lf_cmdread();
75 case 'H':
76 //divisor = 88;
77 dummy[1]='h';
78 cmdp++;
79 break;
80 case 'L':
81 cmdp++;
82 break;
83 case 'c':
84 param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes);
85 cmdp+=2;
86 break;
87 case 'd':
88 c.arg[0] = param_get32ex(Cmd, cmdp+1, 0, 10);
89 cmdp+=2;
90 break;
91 case 'z':
92 c.arg[1] = param_get32ex(Cmd, cmdp+1, 0, 10);
93 cmdp+=2;
94 break;
95 case 'o':
96 c.arg[2] = param_get32ex(Cmd, cmdp+1, 0, 10);
97 cmdp+=2;
98 break;
99 default:
100 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
101 errors = 1;
102 break;
103 }
104 if(errors) break;
105 }
106 // No args
107 if(cmdp == 0) errors = 1;
108
109 //Validations
110 if(errors) return usage_lf_cmdread();
111
112 // in case they specified 'H'
113 strcpy((char *)&c.d.asBytes + strlen((char *)c.d.asBytes), dummy);
114
115 clearCommandBuffer();
116 SendCommand(&c);
117 return 0;
118 }
119
120 int CmdFlexdemod(const char *Cmd)
121 {
122 int i;
123 for (i = 0; i < GraphTraceLen; ++i) {
124 if (GraphBuffer[i] < 0) {
125 GraphBuffer[i] = -1;
126 } else {
127 GraphBuffer[i] = 1;
128 }
129 }
130
131 #define LONG_WAIT 100
132 int start;
133 for (start = 0; start < GraphTraceLen - LONG_WAIT; start++) {
134 int first = GraphBuffer[start];
135 for (i = start; i < start + LONG_WAIT; i++) {
136 if (GraphBuffer[i] != first) {
137 break;
138 }
139 }
140 if (i == (start + LONG_WAIT)) {
141 break;
142 }
143 }
144 if (start == GraphTraceLen - LONG_WAIT) {
145 PrintAndLog("nothing to wait for");
146 return 0;
147 }
148
149 GraphBuffer[start] = 2;
150 GraphBuffer[start+1] = -2;
151 uint8_t bits[64] = {0x00};
152
153 int bit, sum;
154 i = start;
155 for (bit = 0; bit < 64; bit++) {
156 sum = 0;
157 for (int j = 0; j < 16; j++) {
158 sum += GraphBuffer[i++];
159 }
160
161 bits[bit] = (sum > 0) ? 1 : 0;
162
163 PrintAndLog("bit %d sum %d", bit, sum);
164 }
165
166 for (bit = 0; bit < 64; bit++) {
167 int j;
168 int sum = 0;
169 for (j = 0; j < 16; j++) {
170 sum += GraphBuffer[i++];
171 }
172 if (sum > 0 && bits[bit] != 1) {
173 PrintAndLog("oops1 at %d", bit);
174 }
175 if (sum < 0 && bits[bit] != 0) {
176 PrintAndLog("oops2 at %d", bit);
177 }
178 }
179
180 // HACK writing back to graphbuffer.
181 GraphTraceLen = 32*64;
182 i = 0;
183 int phase = 0;
184 for (bit = 0; bit < 64; bit++) {
185
186 phase = (bits[bit] == 0) ? 0 : 1;
187
188 int j;
189 for (j = 0; j < 32; j++) {
190 GraphBuffer[i++] = phase;
191 phase = !phase;
192 }
193 }
194
195 RepaintGraphWindow();
196 return 0;
197 }
198
199 int CmdIndalaDemod(const char *Cmd)
200 {
201 // Usage: recover 64bit UID by default, specify "224" as arg to recover a 224bit UID
202
203 int state = -1;
204 int count = 0;
205 int i, j;
206
207 // worst case with GraphTraceLen=64000 is < 4096
208 // under normal conditions it's < 2048
209
210 uint8_t rawbits[4096];
211 int rawbit = 0;
212 int worst = 0, worstPos = 0;
213 // PrintAndLog("Expecting a bit less than %d raw bits", GraphTraceLen / 32);
214
215 // loop through raw signal - since we know it is psk1 rf/32 fc/2 skip every other value (+=2)
216 for (i = 0; i < GraphTraceLen-1; i += 2) {
217 count += 1;
218 if ((GraphBuffer[i] > GraphBuffer[i + 1]) && (state != 1)) {
219 // appears redundant - marshmellow
220 if (state == 0) {
221 for (j = 0; j < count - 8; j += 16) {
222 rawbits[rawbit++] = 0;
223 }
224 if ((abs(count - j)) > worst) {
225 worst = abs(count - j);
226 worstPos = i;
227 }
228 }
229 state = 1;
230 count = 0;
231 } else if ((GraphBuffer[i] < GraphBuffer[i + 1]) && (state != 0)) {
232 //appears redundant
233 if (state == 1) {
234 for (j = 0; j < count - 8; j += 16) {
235 rawbits[rawbit++] = 1;
236 }
237 if ((abs(count - j)) > worst) {
238 worst = abs(count - j);
239 worstPos = i;
240 }
241 }
242 state = 0;
243 count = 0;
244 }
245 }
246
247 if (rawbit>0){
248 PrintAndLog("Recovered %d raw bits, expected: %d", rawbit, GraphTraceLen/32);
249 PrintAndLog("worst metric (0=best..7=worst): %d at pos %d", worst, worstPos);
250 } else {
251 return 0;
252 }
253
254 // Finding the start of a UID
255 int uidlen, long_wait;
256 if (strcmp(Cmd, "224") == 0) {
257 uidlen = 224;
258 long_wait = 30;
259 } else {
260 uidlen = 64;
261 long_wait = 29;
262 }
263
264 int start;
265 int first = 0;
266 for (start = 0; start <= rawbit - uidlen; start++) {
267 first = rawbits[start];
268 for (i = start; i < start + long_wait; i++) {
269 if (rawbits[i] != first) {
270 break;
271 }
272 }
273 if (i == (start + long_wait)) {
274 break;
275 }
276 }
277
278 if (start == rawbit - uidlen + 1) {
279 PrintAndLog("nothing to wait for");
280 return 0;
281 }
282
283 // Inverting signal if needed
284 if (first == 1) {
285 for (i = start; i < rawbit; i++) {
286 rawbits[i] = !rawbits[i];
287 }
288 }
289
290 // Dumping UID
291 uint8_t bits[224] = {0x00};
292 char showbits[225] = {0x00};
293 int bit;
294 i = start;
295 int times = 0;
296
297 if (uidlen > rawbit) {
298 PrintAndLog("Warning: not enough raw bits to get a full UID");
299 for (bit = 0; bit < rawbit; bit++) {
300 bits[bit] = rawbits[i++];
301 // As we cannot know the parity, let's use "." and "/"
302 showbits[bit] = '.' + bits[bit];
303 }
304 showbits[bit+1]='\0';
305 PrintAndLog("Partial UID=%s", showbits);
306 return 0;
307 } else {
308 for (bit = 0; bit < uidlen; bit++) {
309 bits[bit] = rawbits[i++];
310 showbits[bit] = '0' + bits[bit];
311 }
312 times = 1;
313 }
314
315 //convert UID to HEX
316 uint32_t uid1, uid2, uid3, uid4, uid5, uid6, uid7;
317 int idx;
318 uid1 = uid2 = 0;
319
320 if (uidlen==64){
321 for( idx=0; idx<64; idx++) {
322 if (showbits[idx] == '0') {
323 uid1=(uid1<<1)|(uid2>>31);
324 uid2=(uid2<<1)|0;
325 } else {
326 uid1=(uid1<<1)|(uid2>>31);
327 uid2=(uid2<<1)|1;
328 }
329 }
330 PrintAndLog("UID=%s (%x%08x)", showbits, uid1, uid2);
331 }
332 else {
333 uid3 = uid4 = uid5 = uid6 = uid7 = 0;
334
335 for( idx=0; idx<224; idx++) {
336 uid1=(uid1<<1)|(uid2>>31);
337 uid2=(uid2<<1)|(uid3>>31);
338 uid3=(uid3<<1)|(uid4>>31);
339 uid4=(uid4<<1)|(uid5>>31);
340 uid5=(uid5<<1)|(uid6>>31);
341 uid6=(uid6<<1)|(uid7>>31);
342
343 if (showbits[idx] == '0')
344 uid7 = (uid7<<1) | 0;
345 else
346 uid7 = (uid7<<1) | 1;
347 }
348 PrintAndLog("UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits, uid1, uid2, uid3, uid4, uid5, uid6, uid7);
349 }
350
351 // Checking UID against next occurrences
352 int failed = 0;
353 for (; i + uidlen <= rawbit;) {
354 failed = 0;
355 for (bit = 0; bit < uidlen; bit++) {
356 if (bits[bit] != rawbits[i++]) {
357 failed = 1;
358 break;
359 }
360 }
361 if (failed == 1) {
362 break;
363 }
364 times += 1;
365 }
366
367 PrintAndLog("Occurrences: %d (expected %d)", times, (rawbit - start) / uidlen);
368
369 // Remodulating for tag cloning
370 // HACK: 2015-01-04 this will have an impact on our new way of seening lf commands (demod)
371 // since this changes graphbuffer data.
372 GraphTraceLen = 32*uidlen;
373 i = 0;
374 int phase = 0;
375 for (bit = 0; bit < uidlen; bit++) {
376 if (bits[bit] == 0) {
377 phase = 0;
378 } else {
379 phase = 1;
380 }
381 int j;
382 for (j = 0; j < 32; j++) {
383 GraphBuffer[i++] = phase;
384 phase = !phase;
385 }
386 }
387
388 RepaintGraphWindow();
389 return 1;
390 }
391
392 int CmdIndalaClone(const char *Cmd)
393 {
394 UsbCommand c;
395 unsigned int uid1, uid2, uid3, uid4, uid5, uid6, uid7;
396
397 uid1 = uid2 = uid3 = uid4 = uid5 = uid6 = uid7 = 0;
398 int n = 0, i = 0;
399
400 if (strchr(Cmd,'l') != 0) {
401 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
402 uid1 = (uid1 << 4) | (uid2 >> 28);
403 uid2 = (uid2 << 4) | (uid3 >> 28);
404 uid3 = (uid3 << 4) | (uid4 >> 28);
405 uid4 = (uid4 << 4) | (uid5 >> 28);
406 uid5 = (uid5 << 4) | (uid6 >> 28);
407 uid6 = (uid6 << 4) | (uid7 >> 28);
408 uid7 = (uid7 << 4) | (n & 0xf);
409 }
410 PrintAndLog("Cloning 224bit tag with UID %x%08x%08x%08x%08x%08x%08x", uid1, uid2, uid3, uid4, uid5, uid6, uid7);
411 c.cmd = CMD_INDALA_CLONE_TAG_L;
412 c.d.asDwords[0] = uid1;
413 c.d.asDwords[1] = uid2;
414 c.d.asDwords[2] = uid3;
415 c.d.asDwords[3] = uid4;
416 c.d.asDwords[4] = uid5;
417 c.d.asDwords[5] = uid6;
418 c.d.asDwords[6] = uid7;
419 } else {
420 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
421 uid1 = (uid1 << 4) | (uid2 >> 28);
422 uid2 = (uid2 << 4) | (n & 0xf);
423 }
424 PrintAndLog("Cloning 64bit tag with UID %x%08x", uid1, uid2);
425 c.cmd = CMD_INDALA_CLONE_TAG;
426 c.arg[0] = uid1;
427 c.arg[1] = uid2;
428 }
429
430 clearCommandBuffer();
431 SendCommand(&c);
432 return 0;
433 }
434
435 int usage_lf_read(void)
436 {
437 PrintAndLog("Usage: lf read");
438 PrintAndLog("Options: ");
439 PrintAndLog(" h This help");
440 PrintAndLog(" s silent run no printout");
441 PrintAndLog("This function takes no arguments. ");
442 PrintAndLog("Use 'lf config' to set parameters.");
443 return 0;
444 }
445 int usage_lf_snoop(void)
446 {
447 PrintAndLog("Usage: lf snoop");
448 PrintAndLog("Options: ");
449 PrintAndLog(" h This help");
450 PrintAndLog("This function takes no arguments. ");
451 PrintAndLog("Use 'lf config' to set parameters.");
452 return 0;
453 }
454
455 int usage_lf_config(void)
456 {
457 PrintAndLog("Usage: lf config [H|<divisor>] [b <bps>] [d <decim>] [a 0|1]");
458 PrintAndLog("Options: ");
459 PrintAndLog(" h This help");
460 PrintAndLog(" L Low frequency (125 KHz)");
461 PrintAndLog(" H High frequency (134 KHz)");
462 PrintAndLog(" q <divisor> Manually set divisor. 88-> 134KHz, 95-> 125 Hz");
463 PrintAndLog(" b <bps> Sets resolution of bits per sample. Default (max): 8");
464 PrintAndLog(" d <decim> Sets decimation. A value of N saves only 1 in N samples. Default: 1");
465 PrintAndLog(" a [0|1] Averaging - if set, will average the stored sample value when decimating. Default: 1");
466 PrintAndLog(" t <threshold> Sets trigger threshold. 0 means no threshold (range: 0-128)");
467 PrintAndLog("Examples:");
468 PrintAndLog(" lf config b 8 L");
469 PrintAndLog(" Samples at 125KHz, 8bps.");
470 PrintAndLog(" lf config H b 4 d 3");
471 PrintAndLog(" Samples at 134KHz, averages three samples into one, stored with ");
472 PrintAndLog(" a resolution of 4 bits per sample.");
473 PrintAndLog(" lf read");
474 PrintAndLog(" Performs a read (active field)");
475 PrintAndLog(" lf snoop");
476 PrintAndLog(" Performs a snoop (no active field)");
477 return 0;
478 }
479
480 int CmdLFSetConfig(const char *Cmd)
481 {
482
483 uint8_t divisor = 0;//Frequency divisor
484 uint8_t bps = 0; // Bits per sample
485 uint8_t decimation = 0; //How many to keep
486 bool averaging = 1; // Defaults to true
487 bool errors = FALSE;
488 int trigger_threshold =-1;//Means no change
489 uint8_t unsigned_trigg = 0;
490
491 uint8_t cmdp =0;
492 while(param_getchar(Cmd, cmdp) != 0x00)
493 {
494 switch(param_getchar(Cmd, cmdp))
495 {
496 case 'h':
497 return usage_lf_config();
498 case 'H':
499 divisor = 88;
500 cmdp++;
501 break;
502 case 'L':
503 divisor = 95;
504 cmdp++;
505 break;
506 case 'q':
507 errors |= param_getdec(Cmd,cmdp+1,&divisor);
508 cmdp+=2;
509 break;
510 case 't':
511 errors |= param_getdec(Cmd,cmdp+1,&unsigned_trigg);
512 cmdp+=2;
513 if(!errors) trigger_threshold = unsigned_trigg;
514 break;
515 case 'b':
516 errors |= param_getdec(Cmd,cmdp+1,&bps);
517 cmdp+=2;
518 break;
519 case 'd':
520 errors |= param_getdec(Cmd,cmdp+1,&decimation);
521 cmdp+=2;
522 break;
523 case 'a':
524 averaging = param_getchar(Cmd,cmdp+1) == '1';
525 cmdp+=2;
526 break;
527 default:
528 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
529 errors = 1;
530 break;
531 }
532 if(errors) break;
533 }
534 if(cmdp == 0)
535 {
536 errors = 1;// No args
537 }
538
539 //Validations
540 if(errors)
541 {
542 return usage_lf_config();
543 }
544 //Bps is limited to 8, so fits in lower half of arg1
545 if(bps >> 4) bps = 8;
546
547 sample_config config = {
548 decimation,bps,averaging,divisor,trigger_threshold
549 };
550 //Averaging is a flag on high-bit of arg[1]
551 UsbCommand c = {CMD_SET_LF_SAMPLING_CONFIG};
552 memcpy(c.d.asBytes,&config,sizeof(sample_config));
553 clearCommandBuffer();
554 SendCommand(&c);
555 return 0;
556 }
557
558 int CmdLFRead(const char *Cmd)
559 {
560
561 uint8_t cmdp = 0;
562 bool arg1 = false;
563 if (param_getchar(Cmd, cmdp) == 'h')
564 {
565 return usage_lf_read();
566 }
567 if (param_getchar(Cmd, cmdp) == 's') arg1 = true; //suppress print
568 //And ship it to device
569 UsbCommand c = {CMD_ACQUIRE_RAW_ADC_SAMPLES_125K, {arg1,0,0}};
570 clearCommandBuffer();
571 SendCommand(&c);
572 //WaitForResponse(CMD_ACK,NULL);
573 if ( !WaitForResponseTimeout(CMD_ACK,NULL,2500) ) {
574 PrintAndLog("command execution time out");
575 return 1;
576 }
577
578 return 0;
579 }
580
581 int CmdLFSnoop(const char *Cmd)
582 {
583 uint8_t cmdp =0;
584 if(param_getchar(Cmd, cmdp) == 'h')
585 {
586 return usage_lf_snoop();
587 }
588
589 UsbCommand c = {CMD_LF_SNOOP_RAW_ADC_SAMPLES};
590 clearCommandBuffer();
591 SendCommand(&c);
592 WaitForResponse(CMD_ACK,NULL);
593 return 0;
594 }
595
596 static void ChkBitstream(const char *str)
597 {
598 int i;
599
600 /* convert to bitstream if necessary */
601 for (i = 0; i < (int)(GraphTraceLen / 2); i++){
602 if (GraphBuffer[i] > 1 || GraphBuffer[i] < 0) {
603 CmdGetBitStream("");
604 break;
605 }
606 }
607 }
608 //Attempt to simulate any wave in buffer (one bit per output sample)
609 // converts GraphBuffer to bitstream (based on zero crossings) if needed.
610 int CmdLFSim(const char *Cmd)
611 {
612 int i,j;
613 static int gap;
614
615 sscanf(Cmd, "%i", &gap);
616
617 // convert to bitstream if necessary
618
619 ChkBitstream(Cmd);
620
621 //can send only 512 bits at a time (1 byte sent per bit...)
622 printf("Sending [%d bytes]", GraphTraceLen);
623 for (i = 0; i < GraphTraceLen; i += USB_CMD_DATA_SIZE) {
624 UsbCommand c={CMD_DOWNLOADED_SIM_SAMPLES_125K, {i, 0, 0}};
625
626 for (j = 0; j < USB_CMD_DATA_SIZE; j++) {
627 c.d.asBytes[j] = GraphBuffer[i+j];
628 }
629 SendCommand(&c);
630 WaitForResponse(CMD_ACK,NULL);
631 printf(".");
632 }
633
634 printf("\n");
635 PrintAndLog("Starting to simulate");
636 UsbCommand c = {CMD_SIMULATE_TAG_125K, {GraphTraceLen, gap, 0}};
637 clearCommandBuffer();
638 SendCommand(&c);
639 return 0;
640 }
641
642 int usage_lf_simfsk(void)
643 {
644 //print help
645 PrintAndLog("Usage: lf simfsk [c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>]");
646 PrintAndLog("Options: ");
647 PrintAndLog(" h This help");
648 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
649 PrintAndLog(" i invert data");
650 PrintAndLog(" H <fcHigh> Manually set the larger Field Clock");
651 PrintAndLog(" L <fcLow> Manually set the smaller Field Clock");
652 //PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap");
653 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
654 PrintAndLog("\n NOTE: if you set one clock manually set them all manually");
655 return 0;
656 }
657
658 int usage_lf_simask(void)
659 {
660 //print help
661 PrintAndLog("Usage: lf simask [c <clock>] [i] [b|m|r] [s] [d <raw hex to sim>]");
662 PrintAndLog("Options: ");
663 PrintAndLog(" h This help");
664 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
665 PrintAndLog(" i invert data");
666 PrintAndLog(" b sim ask/biphase");
667 PrintAndLog(" m sim ask/manchester - Default");
668 PrintAndLog(" r sim ask/raw");
669 PrintAndLog(" s add t55xx Sequence Terminator gap - default: no gaps (only manchester)");
670 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
671 return 0;
672 }
673
674 int usage_lf_simpsk(void)
675 {
676 //print help
677 PrintAndLog("Usage: lf simpsk [1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>]");
678 PrintAndLog("Options: ");
679 PrintAndLog(" h This help");
680 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
681 PrintAndLog(" i invert data");
682 PrintAndLog(" 1 set PSK1 (default)");
683 PrintAndLog(" 2 set PSK2");
684 PrintAndLog(" 3 set PSK3");
685 PrintAndLog(" r <carrier> 2|4|8 are valid carriers: default = 2");
686 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
687 return 0;
688 }
689
690 // by marshmellow - sim fsk data given clock, fcHigh, fcLow, invert
691 // - allow pull data from DemodBuffer
692 int CmdLFfskSim(const char *Cmd)
693 {
694 //might be able to autodetect FCs and clock from Graphbuffer if using demod buffer
695 // otherwise will need FChigh, FClow, Clock, and bitstream
696 uint8_t fcHigh=0, fcLow=0, clk=0;
697 uint8_t invert=0;
698 bool errors = FALSE;
699 char hexData[32] = {0x00}; // store entered hex data
700 uint8_t data[255] = {0x00};
701 int dataLen = 0;
702 uint8_t cmdp = 0;
703 while(param_getchar(Cmd, cmdp) != 0x00)
704 {
705 switch(param_getchar(Cmd, cmdp))
706 {
707 case 'h':
708 return usage_lf_simfsk();
709 case 'i':
710 invert = 1;
711 cmdp++;
712 break;
713 case 'c':
714 errors |= param_getdec(Cmd,cmdp+1,&clk);
715 cmdp+=2;
716 break;
717 case 'H':
718 errors |= param_getdec(Cmd,cmdp+1,&fcHigh);
719 cmdp+=2;
720 break;
721 case 'L':
722 errors |= param_getdec(Cmd,cmdp+1,&fcLow);
723 cmdp+=2;
724 break;
725 //case 's':
726 // separator=1;
727 // cmdp++;
728 // break;
729 case 'd':
730 dataLen = param_getstr(Cmd, cmdp+1, hexData);
731 if (dataLen==0) {
732 errors=TRUE;
733 } else {
734 dataLen = hextobinarray((char *)data, hexData);
735 }
736 if (dataLen==0) errors=TRUE;
737 if (errors) PrintAndLog ("Error getting hex data");
738 cmdp+=2;
739 break;
740 default:
741 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
742 errors = TRUE;
743 break;
744 }
745 if(errors) break;
746 }
747 if(cmdp == 0 && DemodBufferLen == 0)
748 {
749 errors = TRUE;// No args
750 }
751
752 //Validations
753 if(errors)
754 {
755 return usage_lf_simfsk();
756 }
757
758 if (dataLen == 0){ //using DemodBuffer
759 if (clk==0 || fcHigh==0 || fcLow==0){ //manual settings must set them all
760 uint8_t ans = fskClocks(&fcHigh, &fcLow, &clk, 0);
761 if (ans==0){
762 if (!fcHigh) fcHigh=10;
763 if (!fcLow) fcLow=8;
764 if (!clk) clk=50;
765 }
766 }
767 } else {
768 setDemodBuf(data, dataLen, 0);
769 }
770
771 //default if not found
772 if (clk == 0) clk = 50;
773 if (fcHigh == 0) fcHigh = 10;
774 if (fcLow == 0) fcLow = 8;
775
776 uint16_t arg1, arg2;
777 arg1 = fcHigh << 8 | fcLow;
778 arg2 = invert << 8 | clk;
779 size_t size = DemodBufferLen;
780 if (size > USB_CMD_DATA_SIZE) {
781 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size, USB_CMD_DATA_SIZE);
782 size = USB_CMD_DATA_SIZE;
783 }
784 UsbCommand c = {CMD_FSK_SIM_TAG, {arg1, arg2, size}};
785
786 memcpy(c.d.asBytes, DemodBuffer, size);
787 clearCommandBuffer();
788 SendCommand(&c);
789 return 0;
790 }
791
792 // by marshmellow - sim ask data given clock, invert, manchester or raw, separator
793 // - allow pull data from DemodBuffer
794 int CmdLFaskSim(const char *Cmd)
795 {
796 //autodetect clock from Graphbuffer if using demod buffer
797 // needs clock, invert, manchester/raw as m or r, separator as s, and bitstream
798 uint8_t encoding = 1, separator = 0;
799 uint8_t clk=0, invert=0;
800 bool errors = FALSE;
801 char hexData[32] = {0x00};
802 uint8_t data[255]= {0x00}; // store entered hex data
803 int dataLen = 0;
804 uint8_t cmdp = 0;
805 while(param_getchar(Cmd, cmdp) != 0x00)
806 {
807 switch(param_getchar(Cmd, cmdp))
808 {
809 case 'h':
810 return usage_lf_simask();
811 case 'i':
812 invert = 1;
813 cmdp++;
814 break;
815 case 'c':
816 errors |= param_getdec(Cmd,cmdp+1,&clk);
817 cmdp+=2;
818 break;
819 case 'b':
820 encoding=2; //biphase
821 cmdp++;
822 break;
823 case 'm':
824 encoding=1;
825 cmdp++;
826 break;
827 case 'r':
828 encoding=0;
829 cmdp++;
830 break;
831 case 's':
832 separator=1;
833 cmdp++;
834 break;
835 case 'd':
836 dataLen = param_getstr(Cmd, cmdp+1, hexData);
837 if (dataLen==0) {
838 errors=TRUE;
839 } else {
840 dataLen = hextobinarray((char *)data, hexData);
841 }
842 if (dataLen==0) errors=TRUE;
843 if (errors) PrintAndLog ("Error getting hex data, datalen: %d",dataLen);
844 cmdp+=2;
845 break;
846 default:
847 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
848 errors = TRUE;
849 break;
850 }
851 if(errors) break;
852 }
853 if(cmdp == 0 && DemodBufferLen == 0)
854 {
855 errors = TRUE;// No args
856 }
857
858 //Validations
859 if(errors)
860 {
861 return usage_lf_simask();
862 }
863 if (dataLen == 0){ //using DemodBuffer
864 if (clk == 0) clk = GetAskClock("0", false, false);
865 } else {
866 setDemodBuf(data, dataLen, 0);
867 }
868 if (clk == 0) clk = 64;
869 if (encoding == 0) clk = clk/2; //askraw needs to double the clock speed
870 uint16_t arg1, arg2;
871 size_t size=DemodBufferLen;
872 arg1 = clk << 8 | encoding;
873 arg2 = invert << 8 | separator;
874 if (size > USB_CMD_DATA_SIZE) {
875 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size, USB_CMD_DATA_SIZE);
876 size = USB_CMD_DATA_SIZE;
877 }
878 UsbCommand c = {CMD_ASK_SIM_TAG, {arg1, arg2, size}};
879 PrintAndLog("preparing to sim ask data: %d bits", size);
880 memcpy(c.d.asBytes, DemodBuffer, size);
881 clearCommandBuffer();
882 SendCommand(&c);
883 return 0;
884 }
885
886 // by marshmellow - sim psk data given carrier, clock, invert
887 // - allow pull data from DemodBuffer or parameters
888 int CmdLFpskSim(const char *Cmd)
889 {
890 //might be able to autodetect FC and clock from Graphbuffer if using demod buffer
891 //will need carrier, Clock, and bitstream
892 uint8_t carrier=0, clk=0;
893 uint8_t invert=0;
894 bool errors = FALSE;
895 char hexData[32] = {0x00}; // store entered hex data
896 uint8_t data[255] = {0x00};
897 int dataLen = 0;
898 uint8_t cmdp = 0;
899 uint8_t pskType = 1;
900 while(param_getchar(Cmd, cmdp) != 0x00)
901 {
902 switch(param_getchar(Cmd, cmdp))
903 {
904 case 'h':
905 return usage_lf_simpsk();
906 case 'i':
907 invert = 1;
908 cmdp++;
909 break;
910 case 'c':
911 errors |= param_getdec(Cmd,cmdp+1,&clk);
912 cmdp+=2;
913 break;
914 case 'r':
915 errors |= param_getdec(Cmd,cmdp+1,&carrier);
916 cmdp+=2;
917 break;
918 case '1':
919 pskType=1;
920 cmdp++;
921 break;
922 case '2':
923 pskType=2;
924 cmdp++;
925 break;
926 case '3':
927 pskType=3;
928 cmdp++;
929 break;
930 case 'd':
931 dataLen = param_getstr(Cmd, cmdp+1, hexData);
932 if (dataLen==0) {
933 errors=TRUE;
934 } else {
935 dataLen = hextobinarray((char *)data, hexData);
936 }
937 if (dataLen==0) errors=TRUE;
938 if (errors) PrintAndLog ("Error getting hex data");
939 cmdp+=2;
940 break;
941 default:
942 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
943 errors = TRUE;
944 break;
945 }
946 if (errors) break;
947 }
948 if (cmdp == 0 && DemodBufferLen == 0)
949 {
950 errors = TRUE;// No args
951 }
952
953 //Validations
954 if (errors)
955 {
956 return usage_lf_simpsk();
957 }
958 if (dataLen == 0){ //using DemodBuffer
959 PrintAndLog("Getting Clocks");
960 if (clk==0) clk = GetPskClock("", FALSE, FALSE);
961 PrintAndLog("clk: %d",clk);
962 if (!carrier) carrier = GetPskCarrier("", FALSE, FALSE);
963 PrintAndLog("carrier: %d", carrier);
964 } else {
965 setDemodBuf(data, dataLen, 0);
966 }
967
968 if (clk <= 0) clk = 32;
969 if (carrier == 0) carrier = 2;
970 if (pskType != 1){
971 if (pskType == 2){
972 //need to convert psk2 to psk1 data before sim
973 psk2TOpsk1(DemodBuffer, DemodBufferLen);
974 } else {
975 PrintAndLog("Sorry, PSK3 not yet available");
976 }
977 }
978 uint16_t arg1, arg2;
979 arg1 = clk << 8 | carrier;
980 arg2 = invert;
981 size_t size=DemodBufferLen;
982 if (size > USB_CMD_DATA_SIZE) {
983 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size, USB_CMD_DATA_SIZE);
984 size=USB_CMD_DATA_SIZE;
985 }
986 UsbCommand c = {CMD_PSK_SIM_TAG, {arg1, arg2, size}};
987 PrintAndLog("DEBUG: Sending DemodBuffer Length: %d", size);
988 memcpy(c.d.asBytes, DemodBuffer, size);
989 clearCommandBuffer();
990 SendCommand(&c);
991
992 return 0;
993 }
994
995 int CmdLFSimBidir(const char *Cmd)
996 {
997 // Set ADC to twice the carrier for a slight supersampling
998 // HACK: not implemented in ARMSRC.
999 PrintAndLog("Not implemented yet.");
1000 UsbCommand c = {CMD_LF_SIMULATE_BIDIR, {47, 384, 0}};
1001 SendCommand(&c);
1002 return 0;
1003 }
1004
1005 int CmdVchDemod(const char *Cmd)
1006 {
1007 // Is this the entire sync pattern, or does this also include some
1008 // data bits that happen to be the same everywhere? That would be
1009 // lovely to know.
1010 static const int SyncPattern[] = {
1011 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1012 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1013 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1014 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1015 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1016 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1017 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1018 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1019 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1020 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1021 };
1022
1023 // So first, we correlate for the sync pattern, and mark that.
1024 int bestCorrel = 0, bestPos = 0;
1025 int i;
1026 // It does us no good to find the sync pattern, with fewer than
1027 // 2048 samples after it...
1028 for (i = 0; i < (GraphTraceLen-2048); i++) {
1029 int sum = 0;
1030 int j;
1031 for (j = 0; j < arraylen(SyncPattern); j++) {
1032 sum += GraphBuffer[i+j]*SyncPattern[j];
1033 }
1034 if (sum > bestCorrel) {
1035 bestCorrel = sum;
1036 bestPos = i;
1037 }
1038 }
1039 PrintAndLog("best sync at %d [metric %d]", bestPos, bestCorrel);
1040
1041 char bits[257];
1042 bits[256] = '\0';
1043
1044 int worst = INT_MAX;
1045 int worstPos = 0;
1046
1047 for (i = 0; i < 2048; i += 8) {
1048 int sum = 0;
1049 int j;
1050 for (j = 0; j < 8; j++) {
1051 sum += GraphBuffer[bestPos+i+j];
1052 }
1053 if (sum < 0) {
1054 bits[i/8] = '.';
1055 } else {
1056 bits[i/8] = '1';
1057 }
1058 if(abs(sum) < worst) {
1059 worst = abs(sum);
1060 worstPos = i;
1061 }
1062 }
1063 PrintAndLog("bits:");
1064 PrintAndLog("%s", bits);
1065 PrintAndLog("worst metric: %d at pos %d", worst, worstPos);
1066
1067 if (strcmp(Cmd, "clone")==0) {
1068 GraphTraceLen = 0;
1069 char *s;
1070 for(s = bits; *s; s++) {
1071 int j;
1072 for(j = 0; j < 16; j++) {
1073 GraphBuffer[GraphTraceLen++] = (*s == '1') ? 1 : 0;
1074 }
1075 }
1076 RepaintGraphWindow();
1077 }
1078 return 0;
1079 }
1080
1081
1082 //by marshmellow
1083 int CheckChipType(char cmdp) {
1084 uint32_t wordData = 0;
1085
1086 //check for em4x05/em4x69 chips first
1087 save_restoreGB(1);
1088 if ((!offline && (cmdp != '1')) && EM4x05Block0Test(&wordData)) {
1089 PrintAndLog("\nValid EM4x05/EM4x69 Chip Found\nTry lf em 4x05... commands\n");
1090 save_restoreGB(0);
1091 return 1;
1092 }
1093
1094 //TODO check for t55xx chip...
1095
1096 save_restoreGB(0);
1097 return 1;
1098 }
1099
1100 //by marshmellow
1101 int CmdLFfind(const char *Cmd)
1102 {
1103 uint32_t wordData = 0;
1104 int ans=0;
1105 size_t minLength = 1000;
1106 char cmdp = param_getchar(Cmd, 0);
1107 char testRaw = param_getchar(Cmd, 1);
1108 if (strlen(Cmd) > 3 || cmdp == 'h' || cmdp == 'H') {
1109 PrintAndLog("Usage: lf search <0|1> [u]");
1110 PrintAndLog(" <use data from Graphbuffer> , if not set, try reading data from tag.");
1111 PrintAndLog(" [Search for Unknown tags] , if not set, reads only known tags.");
1112 PrintAndLog("");
1113 PrintAndLog(" sample: lf search = try reading data from tag & search for known tags");
1114 PrintAndLog(" : lf search 1 = use data from GraphBuffer & search for known tags");
1115 PrintAndLog(" : lf search u = try reading data from tag & search for known and unknown tags");
1116 PrintAndLog(" : lf search 1 u = use data from GraphBuffer & search for known and unknown tags");
1117
1118 return 0;
1119 }
1120
1121 if (!offline && (cmdp != '1')){
1122 CmdLFRead("s");
1123 getSamples("30000",false);
1124 } else if (GraphTraceLen < minLength) {
1125 PrintAndLog("Data in Graphbuffer was too small.");
1126 return 0;
1127 }
1128 if (cmdp == 'u' || cmdp == 'U') testRaw = 'u';
1129
1130 PrintAndLog("NOTE: some demods output possible binary\n if it finds something that looks like a tag");
1131 PrintAndLog("False Positives ARE possible\n");
1132 PrintAndLog("\nChecking for known tags:\n");
1133
1134 size_t testLen = minLength;
1135 // only run if graphbuffer is just noise as it should be for hitag/cotag
1136 if (graphJustNoise(GraphBuffer, testLen)) {
1137 // only run these tests if we are in online mode
1138 if (!offline && (cmdp != '1')) {
1139 // test for em4x05 in reader talk first mode.
1140 if (EM4x05Block0Test(&wordData)) {
1141 PrintAndLog("\nValid EM4x05/EM4x69 Chip Found\nUse lf em 4x05readword/dump commands to read\n");
1142 return 1;
1143 }
1144 ans=CmdLFHitagReader("26");
1145 if (ans==0) {
1146 return 1;
1147 }
1148 ans=CmdCOTAGRead("");
1149 if (ans>0){
1150 PrintAndLog("\nValid COTAG ID Found!");
1151 return 1;
1152 }
1153 }
1154 return 0;
1155 }
1156
1157 ans=CmdFSKdemodIO("");
1158 if (ans>0) {
1159 PrintAndLog("\nValid IO Prox ID Found!");
1160 return CheckChipType(cmdp);
1161 }
1162
1163 ans=CmdFSKdemodPyramid("");
1164 if (ans>0) {
1165 PrintAndLog("\nValid Pyramid ID Found!");
1166 return CheckChipType(cmdp);
1167 }
1168
1169 ans=CmdFSKdemodParadox("");
1170 if (ans>0) {
1171 PrintAndLog("\nValid Paradox ID Found!");
1172 return CheckChipType(cmdp);
1173 }
1174
1175 ans=CmdFSKdemodAWID("");
1176 if (ans>0) {
1177 PrintAndLog("\nValid AWID ID Found!");
1178 return CheckChipType(cmdp);
1179 }
1180
1181 ans=CmdFSKdemodHID("");
1182 if (ans>0) {
1183 PrintAndLog("\nValid HID Prox ID Found!");
1184 return CheckChipType(cmdp);
1185 }
1186
1187 ans=CmdAskEM410xDemod("");
1188 if (ans>0) {
1189 PrintAndLog("\nValid EM410x ID Found!");
1190 return CheckChipType(cmdp);
1191 }
1192
1193 ans=CmdG_Prox_II_Demod("");
1194 if (ans>0) {
1195 PrintAndLog("\nValid G Prox II ID Found!");
1196 return CheckChipType(cmdp);
1197 }
1198
1199 ans=CmdFDXBdemodBI("");
1200 if (ans>0) {
1201 PrintAndLog("\nValid FDX-B ID Found!");
1202 return CheckChipType(cmdp);
1203 }
1204
1205 ans=EM4x50Read("", false);
1206 if (ans>0) {
1207 PrintAndLog("\nValid EM4x50 ID Found!");
1208 return 1;
1209 }
1210
1211 ans=CmdVikingDemod("");
1212 if (ans>0) {
1213 PrintAndLog("\nValid Viking ID Found!");
1214 return CheckChipType(cmdp);
1215 }
1216
1217 ans=CmdIndalaDecode("");
1218 if (ans>0) {
1219 PrintAndLog("\nValid Indala ID Found!");
1220 return CheckChipType(cmdp);
1221 }
1222
1223 ans=CmdPSKNexWatch("");
1224 if (ans>0) {
1225 PrintAndLog("\nValid NexWatch ID Found!");
1226 return CheckChipType(cmdp);
1227 }
1228
1229 PrintAndLog("\nNo Known Tags Found!\n");
1230 if (testRaw=='u' || testRaw=='U'){
1231 ans=CheckChipType(cmdp);
1232 //test unknown tag formats (raw mode)0
1233 PrintAndLog("\nChecking for Unknown tags:\n");
1234 ans=AutoCorrelate(4000, FALSE, FALSE);
1235 if (ans > 0) PrintAndLog("Possible Auto Correlation of %d repeating samples",ans);
1236 ans=GetFskClock("",FALSE,FALSE);
1237 if (ans != 0){ //fsk
1238 ans=FSKrawDemod("",TRUE);
1239 if (ans>0) {
1240 PrintAndLog("\nUnknown FSK Modulated Tag Found!");
1241 return 1;
1242 }
1243 }
1244 bool st = TRUE;
1245 ans=ASKDemod_ext("0 0 0",TRUE,FALSE,1,&st);
1246 if (ans>0) {
1247 PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!");
1248 PrintAndLog("\nif it does not look right it could instead be ASK/Biphase - try 'data rawdemod ab'");
1249 return 1;
1250 }
1251 ans=CmdPSK1rawDemod("");
1252 if (ans>0) {
1253 PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data rawdemod p2'");
1254 PrintAndLog("\nCould also be PSK3 - [currently not supported]");
1255 PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod");
1256 return 1;
1257 }
1258 PrintAndLog("\nNo Data Found!\n");
1259 }
1260 return 0;
1261 }
1262
1263 static command_t CommandTable[] =
1264 {
1265 {"help", CmdHelp, 1, "This help"},
1266 {"awid", CmdLFAWID, 1, "{ AWID RFIDs... }"},
1267 {"cotag", CmdLFCOTAG, 1, "{ COTAG RFIDs... }"},
1268 {"em", CmdLFEM4X, 1, "{ EM4X RFIDs... }"},
1269 {"hid", CmdLFHID, 1, "{ HID RFIDs... }"},
1270 {"hitag", CmdLFHitag, 1, "{ Hitag tags and transponders... }"},
1271 {"io", CmdLFIO, 1, "{ ioProx tags... }"},
1272 {"presco", CmdLFPresco, 1, "{ Presco RFIDs... }"},
1273 {"pcf7931", CmdLFPCF7931, 1, "{ PCF7931 RFIDs... }"},
1274 {"pyramid", CmdLFPyramid, 1, "{ Farpointe/Pyramid RFIDs... }"},
1275 {"t55xx", CmdLFT55XX, 1, "{ T55xx RFIDs... }"},
1276 {"ti", CmdLFTI, 1, "{ TI RFIDs... }"},
1277 {"viking", CmdLFViking, 1, "{ Viking tags... }"},
1278 {"cmdread", CmdLFCommandRead, 0, "<d period> <z period> <o period> <c command> ['H'] -- Modulate LF reader field to send command before read (all periods in microseconds) (option 'H' for 134)"},
1279 {"config", CmdLFSetConfig, 0, "Set config for LF sampling, bit/sample, decimation, frequency"},
1280 {"flexdemod", CmdFlexdemod, 1, "Demodulate samples for FlexPass"},
1281 {"indalademod", CmdIndalaDemod, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
1282 {"indalaclone", CmdIndalaClone, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
1283 {"read", CmdLFRead, 0, "['s' silent] Read 125/134 kHz LF ID-only tag. Do 'lf read h' for help"},
1284 {"search", CmdLFfind, 1, "[offline] ['u'] Read and Search for valid known tag (in offline mode it you can load first then search) - 'u' to search for unknown tags"},
1285 {"sim", CmdLFSim, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
1286 {"simask", CmdLFaskSim, 0, "[clock] [invert <1|0>] [biphase/manchester/raw <'b'|'m'|'r'>] [msg separator 's'] [d <hexdata>] -- Simulate LF ASK tag from demodbuffer or input"},
1287 {"simfsk", CmdLFfskSim, 0, "[c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>] -- Simulate LF FSK tag from demodbuffer or input"},
1288 {"simpsk", CmdLFpskSim, 0, "[1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>] -- Simulate LF PSK tag from demodbuffer or input"},
1289 {"simbidir", CmdLFSimBidir, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
1290 {"snoop", CmdLFSnoop, 0, "['l'|'h'|<divisor>] [trigger threshold]-- Snoop LF (l:125khz, h:134khz)"},
1291 {"vchdemod", CmdVchDemod, 1, "['clone'] -- Demodulate samples for VeriChip"},
1292 {NULL, NULL, 0, NULL}
1293 };
1294
1295 int CmdLF(const char *Cmd)
1296 {
1297 CmdsParse(CommandTable, Cmd);
1298 return 0;
1299 }
1300
1301 int CmdHelp(const char *Cmd)
1302 {
1303 CmdsHelp(CommandTable);
1304 return 0;
1305 }
Impressum, Datenschutz