]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfem4x.c
c5f57d55b72d3a1d8103ac6cbb4ef85cc0852232
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
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
7 //-----------------------------------------------------------------------------
8 // Low frequency EM4x commands
9 //-----------------------------------------------------------------------------
14 #include "proxmark3.h"
18 #include "cmdparser.h"
21 #include "cmdlfem4x.h"
24 #define LF_TRACE_BUFF_SIZE 12000
25 #define LF_BITSSTREAM_LEN 1000
27 char *global_em410xId
;
29 static int CmdHelp(const char *Cmd
);
31 /* Read the ID of an EM410x tag.
33 * 1111 1111 1 <-- standard non-repeatable header
34 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
36 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
37 * 0 <-- stop bit, end of tag
39 int CmdEM410xRead(const char *Cmd
)
41 int i
, j
, clock
, header
, rows
, bit
, hithigh
, hitlow
, first
, bit2idx
, high
, low
;
46 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
49 /* Detect high and lows and clock */
50 for (i
= 0; i
< GraphTraceLen
; i
++)
52 if (GraphBuffer
[i
] > high
)
53 high
= GraphBuffer
[i
];
54 else if (GraphBuffer
[i
] < low
)
59 clock
= GetClock(Cmd
, high
, 0);
61 /* parity for our 4 columns */
62 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
65 /* manchester demodulate */
67 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
73 /* Find out if we hit both high and low peaks */
74 for (j
= 0; j
< clock
; j
++)
76 if (GraphBuffer
[(i
* clock
) + j
] == high
)
78 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
81 /* it doesn't count if it's the first part of our read
82 because it's really just trailing from the last sequence */
83 if (first
&& (hithigh
|| hitlow
))
88 if (hithigh
&& hitlow
)
92 /* If we didn't hit both high and low peaks, we had a bit transition */
93 if (!hithigh
|| !hitlow
)
96 BitStream
[bit2idx
++] = bit
;
100 /* We go till 5 before the graph ends because we'll get that far below */
101 for (i
= 0; i
< bit2idx
- 5; i
++)
103 /* Step 2: We have our header but need our tag ID */
104 if (header
== 9 && rows
< 10)
106 /* Confirm parity is correct */
107 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
109 /* Read another byte! */
110 sprintf(id
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
111 sprintf(id2
+rows
, "%x", (8 * BitStream
[i
+3]) + (4 * BitStream
[i
+2]) + (2 * BitStream
[i
+1]) + (1 * BitStream
[i
]));
114 /* Keep parity info */
115 parity
[0] ^= BitStream
[i
];
116 parity
[1] ^= BitStream
[i
+1];
117 parity
[2] ^= BitStream
[i
+2];
118 parity
[3] ^= BitStream
[i
+3];
120 /* Move 4 bits ahead */
124 /* Damn, something wrong! reset */
127 PrintAndLog("Thought we had a valid tag but failed at word %d (i=%d)", rows
+ 1, i
);
129 /* Start back rows * 5 + 9 header bits, -1 to not start at same place */
130 i
-= 9 + (5 * rows
) -5;
136 /* Step 3: Got our 40 bits! confirm column parity */
139 /* We need to make sure our 4 bits of parity are correct and we have a stop bit */
140 if (BitStream
[i
] == parity
[0] && BitStream
[i
+1] == parity
[1] &&
141 BitStream
[i
+2] == parity
[2] && BitStream
[i
+3] == parity
[3] &&
145 PrintAndLog("EM410x Tag ID: %s", id
);
146 PrintAndLog("Unique Tag ID: %s", id2
);
148 global_em410xId
= id
;
154 /* Crap! Incorrect parity or no stop bit, start all over */
159 /* Go back 59 bits (9 header bits + 10 rows at 4+1 parity) */
164 /* Step 1: get our header */
167 /* Need 9 consecutive 1's */
168 if (BitStream
[i
] == 1)
171 /* We don't have a header, not enough consecutive 1 bits */
177 /* if we've already retested after flipping bits, return */
182 /* if this didn't work, try flipping bits */
183 for (i
= 0; i
< bit2idx
; i
++)
189 /* emulate an EM410X tag
191 * 1111 1111 1 <-- standard non-repeatable header
192 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
194 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
195 * 0 <-- stop bit, end of tag
197 int CmdEM410xSim(const char *Cmd
)
199 int i
, n
, j
, binary
[4], parity
[4];
201 char cmdp
= param_getchar(Cmd
, 0);
202 uint8_t uid
[5] = {0x00};
204 if (cmdp
== 'h' || cmdp
== 'H') {
205 PrintAndLog("Usage: lf em4x 410xsim <UID>");
207 PrintAndLog(" sample: lf em4x 410xsim 0F0368568B");
211 if (param_gethex(Cmd
, 0, uid
, 10)) {
212 PrintAndLog("UID must include 10 HEX symbols");
216 PrintAndLog("Starting simulating UID %02X%02X%02X%02X%02X", uid
[0],uid
[1],uid
[2],uid
[3],uid
[4]);
217 PrintAndLog("Press pm3-button to about simulation");
219 /* clock is 64 in EM410x tags */
222 /* clear our graph */
225 /* write 9 start bits */
226 for (i
= 0; i
< 9; i
++)
227 AppendGraph(0, clock
, 1);
229 /* for each hex char */
230 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
231 for (i
= 0; i
< 10; i
++)
233 /* read each hex char */
234 sscanf(&Cmd
[i
], "%1x", &n
);
235 for (j
= 3; j
>= 0; j
--, n
/= 2)
238 /* append each bit */
239 AppendGraph(0, clock
, binary
[0]);
240 AppendGraph(0, clock
, binary
[1]);
241 AppendGraph(0, clock
, binary
[2]);
242 AppendGraph(0, clock
, binary
[3]);
244 /* append parity bit */
245 AppendGraph(0, clock
, binary
[0] ^ binary
[1] ^ binary
[2] ^ binary
[3]);
247 /* keep track of column parity */
248 parity
[0] ^= binary
[0];
249 parity
[1] ^= binary
[1];
250 parity
[2] ^= binary
[2];
251 parity
[3] ^= binary
[3];
255 AppendGraph(0, clock
, parity
[0]);
256 AppendGraph(0, clock
, parity
[1]);
257 AppendGraph(0, clock
, parity
[2]);
258 AppendGraph(0, clock
, parity
[3]);
261 AppendGraph(1, clock
, 0);
263 CmdLFSim("240"); //240 start_gap.
267 /* Function is equivalent of lf read + data samples + em410xread
268 * looped until an EM410x tag is detected
270 * Why is CmdSamples("16000")?
271 * TBD: Auto-grow sample size based on detected sample rate. IE: If the
272 * rate gets lower, then grow the number of samples
273 * Changed by martin, 4000 x 4 = 16000,
274 * see http://www.proxmark.org/forum/viewtopic.php?pid=7235#p7235
277 int CmdEM410xWatch(const char *Cmd
)
279 int read_h
= (*Cmd
== 'h');
283 printf("\naborted via keyboard!\n");
287 CmdLFRead(read_h
? "h" : "");
296 int CmdEM410xWatchnSpoof(const char *Cmd
)
299 PrintAndLog("# Replaying : %s",global_em410xId
);
300 CmdEM410xSim(global_em410xId
);
304 /* Read the transmitted data of an EM4x50 tag
307 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
308 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
309 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
310 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
311 * CCCCCCCC <- column parity bits
313 * LW <- Listen Window
315 * This pattern repeats for every block of data being transmitted.
316 * Transmission starts with two Listen Windows (LW - a modulated
317 * pattern of 320 cycles each (32/32/128/64/64)).
319 * Note that this data may or may not be the UID. It is whatever data
320 * is stored in the blocks defined in the control word First and Last
321 * Word Read values. UID is stored in block 32.
323 int CmdEM4x50Read(const char *Cmd
)
325 int i
, j
, startblock
, skip
, block
, start
, end
, low
, high
;
326 bool complete
= false;
327 int tmpbuff
[MAX_GRAPH_TRACE_LEN
/ 64];
331 memset(tmpbuff
, 0, MAX_GRAPH_TRACE_LEN
/ 64);
333 /* first get high and low values */
334 for (i
= 0; i
< GraphTraceLen
; i
++)
336 if (GraphBuffer
[i
] > high
)
337 high
= GraphBuffer
[i
];
338 else if (GraphBuffer
[i
] < low
)
339 low
= GraphBuffer
[i
];
342 /* populate a buffer with pulse lengths */
345 while (i
< GraphTraceLen
)
347 // measure from low to low
348 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
351 while ((GraphBuffer
[i
] < high
) && (i
<GraphTraceLen
))
353 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
355 if (j
>=(MAX_GRAPH_TRACE_LEN
/64)) {
358 tmpbuff
[j
++]= i
- start
;
361 /* look for data start - should be 2 pairs of LW (pulses of 192,128) */
364 for (i
= 0; i
< j
- 4 ; ++i
)
367 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
368 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
369 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
370 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
378 /* skip over the remainder of the LW */
379 skip
+= tmpbuff
[i
+1]+tmpbuff
[i
+2];
380 while (skip
< MAX_GRAPH_TRACE_LEN
&& GraphBuffer
[skip
] > low
)
384 /* now do it again to find the end */
386 for (i
+= 3; i
< j
- 4 ; ++i
)
389 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
390 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
391 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
392 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
400 PrintAndLog("Found data at sample: %i",skip
);
403 PrintAndLog("No data found!");
404 PrintAndLog("Try again with more samples.");
410 PrintAndLog("*** Warning!");
411 PrintAndLog("Partial data - no end found!");
412 PrintAndLog("Try again with more samples.");
415 /* get rid of leading crap */
416 sprintf(tmp
,"%i",skip
);
419 /* now work through remaining buffer printing out data blocks */
424 PrintAndLog("Block %i:", block
);
425 // mandemod routine needs to be split so we can call it for data
426 // just print for now for debugging
427 CmdManchesterDemod("i 64");
429 /* look for LW before start of next block */
430 for ( ; i
< j
- 4 ; ++i
)
433 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
434 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
437 while (GraphBuffer
[skip
] > low
)
440 sprintf(tmp
,"%i",skip
);
448 int CmdEM410xWrite(const char *Cmd
)
450 uint64_t id
= 0xFFFFFFFFFFFFFFFF; // invalid id value
451 int card
= 0xFF; // invalid card value
452 unsigned int clock
= 0; // invalid clock value
454 sscanf(Cmd
, "%" PRIx64
" %d %d", &id
, &card
, &clock
);
457 if (id
== 0xFFFFFFFFFFFFFFFF) {
458 PrintAndLog("Error! ID is required.\n");
461 if (id
>= 0x10000000000) {
462 PrintAndLog("Error! Given EM410x ID is longer than 40 bits.\n");
468 PrintAndLog("Error! Card type required.\n");
472 PrintAndLog("Error! Bad card type selected.\n");
483 // Allowed clock rates: 16, 32 and 64
484 if ((clock
!= 16) && (clock
!= 32) && (clock
!= 64)) {
485 PrintAndLog("Error! Clock rate %d not valid. Supported clock rates are 16, 32 and 64.\n", clock
);
491 PrintAndLog("Error! Clock rate is only supported on T55x7 tags.\n");
496 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
" (clock rate: %d)", "T55x7", id
, clock
);
497 // NOTE: We really should pass the clock in as a separate argument, but to
498 // provide for backwards-compatibility for older firmware, and to avoid
499 // having to add another argument to CMD_EM410X_WRITE_TAG, we just store
500 // the clock rate in bits 8-15 of the card value
501 card
= (card
& 0xFF) | (((uint64_t)clock
<< 8) & 0xFF00);
504 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
, "T5555", id
, clock
);
506 PrintAndLog("Error! Bad card type selected.\n");
510 UsbCommand c
= {CMD_EM410X_WRITE_TAG
, {card
, (uint32_t)(id
>> 32), (uint32_t)id
}};
516 int CmdReadWord(const char *Cmd
)
518 int Word
= -1; //default to invalid word
521 sscanf(Cmd
, "%d", &Word
);
523 if ( (Word
> 15) | (Word
< 0) ) {
524 PrintAndLog("Word must be between 0 and 15");
528 PrintAndLog("Reading word %d", Word
);
530 c
.cmd
= CMD_EM4X_READ_WORD
;
531 c
.d
.asBytes
[0] = 0x0; //Normal mode
536 WaitForResponse(CMD_ACK
, NULL
);
538 uint8_t data
[LF_TRACE_BUFF_SIZE
] = {0x00};
540 GetFromBigBuf(data
,LF_TRACE_BUFF_SIZE
,3560); //3560 -- should be offset..
541 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
543 for (int j
= 0; j
< LF_TRACE_BUFF_SIZE
; j
++) {
544 GraphBuffer
[j
] = ((int)data
[j
]);
546 GraphTraceLen
= LF_TRACE_BUFF_SIZE
;
548 uint8_t bits
[LF_BITSSTREAM_LEN
] = {0x00};
549 uint8_t * bitstream
= bits
;
550 manchester_decode(GraphBuffer
, LF_TRACE_BUFF_SIZE
, bitstream
,LF_BITSSTREAM_LEN
);
551 RepaintGraphWindow();
555 int CmdReadWordPWD(const char *Cmd
)
557 int Word
= -1; //default to invalid word
558 int Password
= 0xFFFFFFFF; //default to blank password
561 sscanf(Cmd
, "%d %x", &Word
, &Password
);
563 if ( (Word
> 15) | (Word
< 0) ) {
564 PrintAndLog("Word must be between 0 and 15");
568 PrintAndLog("Reading word %d with password %08X", Word
, Password
);
570 c
.cmd
= CMD_EM4X_READ_WORD
;
571 c
.d
.asBytes
[0] = 0x1; //Password mode
576 WaitForResponse(CMD_ACK
, NULL
);
578 uint8_t data
[LF_TRACE_BUFF_SIZE
] = {0x00};
580 GetFromBigBuf(data
,LF_TRACE_BUFF_SIZE
,3560); //3560 -- should be offset..
581 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
583 for (int j
= 0; j
< LF_TRACE_BUFF_SIZE
; j
++) {
584 GraphBuffer
[j
] = ((int)data
[j
]);
586 GraphTraceLen
= LF_TRACE_BUFF_SIZE
;
588 uint8_t bits
[LF_BITSSTREAM_LEN
] = {0x00};
589 uint8_t * bitstream
= bits
;
590 manchester_decode(GraphBuffer
, LF_TRACE_BUFF_SIZE
, bitstream
, LF_BITSSTREAM_LEN
);
591 RepaintGraphWindow();
595 int CmdWriteWord(const char *Cmd
)
597 int Word
= 16; //default to invalid block
598 int Data
= 0xFFFFFFFF; //default to blank data
601 sscanf(Cmd
, "%x %d", &Data
, &Word
);
604 PrintAndLog("Word must be between 0 and 15");
608 PrintAndLog("Writing word %d with data %08X", Word
, Data
);
610 c
.cmd
= CMD_EM4X_WRITE_WORD
;
611 c
.d
.asBytes
[0] = 0x0; //Normal mode
619 int CmdWriteWordPWD(const char *Cmd
)
621 int Word
= 16; //default to invalid word
622 int Data
= 0xFFFFFFFF; //default to blank data
623 int Password
= 0xFFFFFFFF; //default to blank password
626 sscanf(Cmd
, "%x %d %x", &Data
, &Word
, &Password
);
629 PrintAndLog("Word must be between 0 and 15");
633 PrintAndLog("Writing word %d with data %08X and password %08X", Word
, Data
, Password
);
635 c
.cmd
= CMD_EM4X_WRITE_WORD
;
636 c
.d
.asBytes
[0] = 0x1; //Password mode
644 static command_t CommandTable
[] =
646 {"help", CmdHelp
, 1, "This help"},
648 {"410xread", CmdEM410xRead
, 1, "[clock rate] -- Extract ID from EM410x tag"},
649 {"410xsim", CmdEM410xSim
, 0, "<UID> -- Simulate EM410x tag"},
650 {"replay", MWRem4xReplay
, 0, "Watches for tag and simulates manchester encoded em4x tag"},
651 {"410xwatch", CmdEM410xWatch
, 0, "['h'] -- Watches for EM410x 125/134 kHz tags (option 'h' for 134)"},
652 {"410xspoof", CmdEM410xWatchnSpoof
, 0, "['h'] --- Watches for EM410x 125/134 kHz tags, and replays them. (option 'h' for 134)" },
653 {"410xwrite", CmdEM410xWrite
, 1, "<UID> <'0' T5555> <'1' T55x7> [clock rate] -- Write EM410x UID to T5555(Q5) or T55x7 tag, optionally setting clock rate"},
654 {"4x50read", CmdEM4x50Read
, 1, "Extract data from EM4x50 tag"},
655 {"rd", CmdReadWord
, 1, "<Word 1-15> -- Read EM4xxx word data"},
656 {"rdpwd", CmdReadWordPWD
, 1, "<Word 1-15> <Password> -- Read EM4xxx word data in password mode "},
657 {"wr", CmdWriteWord
, 1, "<Data> <Word 1-15> -- Write EM4xxx word data"},
658 {"wrpwd", CmdWriteWordPWD
, 1, "<Data> <Word 1-15> <Password> -- Write EM4xxx word data in password mode"},
659 {NULL
, NULL
, 0, NULL
}
663 //Confirms the parity of a bitstream as well as obtaining the data (TagID) from within the appropriate memory space.
665 // Pointer to a string containing the desired bitsream
666 // Pointer to a string that will receive the decoded tag ID
667 // Length of the bitsream pointed at in the first argument, char* _strBitStream
670 //0 Parity not confirmed
671 int ConfirmEm410xTagParity( char* _strBitStream
, char* pID
, int LengthOfBitstream
)
675 int Parity
[4] = {0x00};
676 char ID
[11] = {0x00};
678 int BitStream
[70] = {0x00};
681 for ( i
= 0; i
<= LengthOfBitstream
; i
++)
683 if (_strBitStream
[i
] == '1')
686 memcpy(&BitStream
[i
], &k
,4);
688 else if (_strBitStream
[i
] == '0')
691 memcpy(&BitStream
[i
], &k
,4);
694 while ( counter
< 2 )
696 //set/reset variables and counters
697 memset(ID
,0x00,sizeof(ID
));
698 memset(Parity
,0x00,sizeof(Parity
));
700 for ( i
= 9; i
<= LengthOfBitstream
; i
++)
704 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
706 sprintf(ID
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
708 /* Keep parity info and move four bits ahead*/
709 Parity
[0] ^= BitStream
[i
];
710 Parity
[1] ^= BitStream
[i
+1];
711 Parity
[2] ^= BitStream
[i
+2];
712 Parity
[3] ^= BitStream
[i
+3];
718 if ( BitStream
[i
] == Parity
[0] && BitStream
[i
+1] == Parity
[1] &&
719 BitStream
[i
+2] == Parity
[2] && BitStream
[i
+3] == Parity
[3] &&
722 memcpy(pID
,ID
,strlen(ID
));
727 printf("[PARITY ->]Failed. Flipping Bits, and rechecking parity for bitstream:\n[PARITY ->]");
728 for (k
= 0; k
< LengthOfBitstream
; k
++)
731 printf("%i", BitStream
[k
]);
738 //Reads and demodulates an em410x RFID tag. It further allows slight modification to the decoded bitstream
739 //Once a suitable bitstream has been identified, and if needed, modified, it is replayed. Allowing emulation of the
741 //No meaningful returns or arguments.
742 int MWRem4xReplay(const char* Cmd
)
745 // static char ArrayTraceZero[] = { '0','0','0','0','0','0','0','0','0' };
746 // static char ArrayTraceOne[] = { '1','1','1','1','1','1','1','1','1' };
747 // //local string variables
748 // char strClockRate[10] = {0x00};
749 // char strAnswer[4] = {0x00};
750 // char strTempBufferMini[2] = {0x00};
751 // //our outbound bit-stream
752 // char strSimulateBitStream[65] = {0x00};
754 // int iClockRate = 0;
757 // int iFirstHeaderOffset = 0x00000000;
758 // int numManchesterDemodBits=0;
760 // bool bInverted = false;
761 // //pointers to strings. memory will be allocated.
762 // char* pstrInvertBitStream = 0x00000000;
763 // char* pTempBuffer = 0x00000000;
764 // char* pID = 0x00000000;
765 // char* strBitStreamBuffer = 0x00000000;
768 // puts("###################################");
769 // puts("#### Em4x Replay ##");
770 // puts("#### R.A.M. June 2013 ##");
771 // puts("###################################");
774 // //Collect ourselves 10,000 samples
775 // CmdSamples("10000");
776 // puts("[->]preforming ASK demodulation\n");
779 // iClockRate = DetectClock(0);
780 // sprintf(strClockRate, "%i\n",iClockRate);
781 // printf("[->]Detected ClockRate: %s\n", strClockRate);
783 // //If detected clock rate is something completely unreasonable, dont go ahead
784 // if ( iClockRate < 0xFFFE )
786 // pTempBuffer = (char*)malloc(MAX_GRAPH_TRACE_LEN);
787 // if (pTempBuffer == 0x00000000)
789 // memset(pTempBuffer,0x00,MAX_GRAPH_TRACE_LEN);
790 // //Preform manchester de-modulation and display in a single line.
791 // numManchesterDemodBits = CmdManchesterDemod( strClockRate );
792 // //note: numManchesterDemodBits is set above in CmdManchesterDemod()
793 // if ( numManchesterDemodBits == 0 )
795 // strBitStreamBuffer = malloc(numManchesterDemodBits+1);
796 // if ( strBitStreamBuffer == 0x00000000 )
798 // memset(strBitStreamBuffer, 0x00, (numManchesterDemodBits+1));
799 // //fill strBitStreamBuffer with demodulated, string formatted bits.
800 // for ( j = 0; j <= numManchesterDemodBits; j++ )
802 // sprintf(strTempBufferMini, "%i",BitStream[j]);
803 // strcat(strBitStreamBuffer,strTempBufferMini);
805 // printf("[->]Demodulated Bitstream: \n%s\n", strBitStreamBuffer);
806 // //Reset counter and select most probable bit stream
808 // while ( j < numManchesterDemodBits )
810 // memset(strSimulateBitStream,0x00,64);
811 // //search for header of nine (9) 0's : 000000000 or nine (9) 1's : 1111 1111 1
812 // if ( ( strncmp(strBitStreamBuffer+j, ArrayTraceZero, sizeof(ArrayTraceZero)) == 0 ) ||
813 // ( strncmp(strBitStreamBuffer+j, ArrayTraceOne, sizeof(ArrayTraceOne)) == 0 ) )
815 // iFirstHeaderOffset = j;
816 // memcpy(strSimulateBitStream, strBitStreamBuffer+j,64);
817 // printf("[->]Offset of Header");
818 // if ( strncmp(strBitStreamBuffer+iFirstHeaderOffset, "0", 1) == 0 )
819 // printf("'%s'", ArrayTraceZero );
821 // printf("'%s'", ArrayTraceOne );
822 // printf(": %i\nHighlighted string : %s\n",iFirstHeaderOffset,strSimulateBitStream);
823 // //allow us to escape loop or choose another frame
824 // puts("[<-]Are we happy with this sample? [Y]es/[N]o");
826 // if ( ( strncmp(strAnswer,"y",1) == 0 ) || ( strncmp(strAnswer,"Y",1) == 0 ) )
828 // j = numManchesterDemodBits+1;
837 // //Do we want the buffer inverted?
838 // memset(strAnswer, 0x00, sizeof(strAnswer));
839 // printf("[<-]Do you wish to invert the highlighted bitstream? [Y]es/[N]o\n");
841 // if ( ( strncmp("y", strAnswer,1) == 0 ) || ( strncmp("Y", strAnswer, 1 ) == 0 ) )
843 // //allocate heap memory
844 // pstrInvertBitStream = (char*)malloc(numManchesterDemodBits);
845 // if ( pstrInvertBitStream != 0x00000000 )
847 // memset(pstrInvertBitStream,0x00,numManchesterDemodBits);
849 // //Invert Bitstream
850 // for ( needle = 0; needle <= numManchesterDemodBits; needle++ )
852 // if (strSimulateBitStream[needle] == '0')
853 // strcat(pstrInvertBitStream,"1");
854 // else if (strSimulateBitStream[needle] == '1')
855 // strcat(pstrInvertBitStream,"0");
857 // printf("[->]Inverted bitstream: %s\n", pstrInvertBitStream);
860 // //Confirm parity of selected string
861 // pID = (char*)malloc(11);
862 // if (pID != 0x00000000)
864 // memset(pID, 0x00, 11);
865 // if (ConfirmEm410xTagParity(strSimulateBitStream,pID, 64) == 1)
867 // printf("[->]Parity confirmed for selected bitstream!\n");
868 // printf("[->]Tag ID was detected as: [hex]:%s\n",pID );
871 // printf("[->]Parity check failed for the selected bitstream!\n");
875 // memset(strAnswer, 0x00, sizeof(strAnswer));
876 // printf("[<-]Do you wish to continue with the EM4x simulation? [Y]es/[N]o\n");
878 // if ( ( strncmp(strAnswer,"y",1) == 0 ) || ( strncmp(strAnswer,"Y",1) == 0 ) )
880 // strcat(pTempBuffer, strClockRate);
881 // strcat(pTempBuffer, " ");
882 // if (bInverted == true)
883 // strcat(pTempBuffer,pstrInvertBitStream);
884 // if (bInverted == false)
885 // strcat(pTempBuffer,strSimulateBitStream);
887 // puts("[->]Starting simulation now: \n");
888 // //Simulate tag with prepared buffer.
889 // CmdLFSimManchester(pTempBuffer);
891 // else if ( ( strcmp("n", strAnswer) == 0 ) || ( strcmp("N", strAnswer ) == 0 ) )
892 // printf("[->]Exiting procedure now...\n");
894 // printf("[->]Erroneous selection\nExiting procedure now....\n");
896 // //Clean up -- Exit function
897 // //clear memory, then release pointer.
898 // if ( pstrInvertBitStream != 0x00000000 )
900 // memset(pstrInvertBitStream,0x00,numManchesterDemodBits);
901 // free(pstrInvertBitStream);
903 // if ( pTempBuffer != 0x00000000 )
905 // memset(pTempBuffer,0x00,MAX_GRAPH_TRACE_LEN);
906 // free(pTempBuffer);
908 // if ( pID != 0x00000000 )
910 // memset(pID,0x00,11);
913 // if ( strBitStreamBuffer != 0x00000000 )
915 // memset(strBitStreamBuffer,0x00,numManchesterDemodBits);
916 // free(strBitStreamBuffer);
921 int CmdLFEM4X(const char *Cmd
)
923 CmdsParse(CommandTable
, Cmd
);
927 int CmdHelp(const char *Cmd
)
929 CmdsHelp(CommandTable
);