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 // High frequency commands
9 //-----------------------------------------------------------------------------
13 #include "proxmark3.h"
16 #include "cmdparser.h"
22 #include "cmdhflegic.h"
23 #include "cmdhficlass.h"
26 static int CmdHelp(const char *Cmd
);
28 int CmdHFTune(const char *Cmd
)
30 UsbCommand c
={CMD_MEASURE_ANTENNA_TUNING_HF
};
34 // for the time being. Need better Bigbuf handling.
35 #define TRACE_SIZE 3000
37 //The following data is taken from http://www.proxmark.org/forum/viewtopic.php?pid=13501#p13501
39 ISO14443A (usually NFC tags)
41 30 = Read (usage: 30+1byte block number+2bytes ISO14443A-CRC - answer: 16bytes)
42 A2 = Write (usage: A2+1byte block number+4bytes data+2bytes ISO14443A-CRC - answer: 0A [ACK] or 00 [NAK])
43 52 (7bits) = WUPA (usage: 52(7bits) - answer: 2bytes ATQA)
44 93 20 = Anticollision (usage: 9320 - answer: 4bytes UID+1byte UID-bytes-xor)
45 93 70 = Select (usage: 9370+5bytes 9320 answer - answer: 1byte SAK)
46 95 20 = Anticollision of cascade level2
47 95 70 = Select of cascade level2
48 50 00 = Halt (usage: 5000+2bytes ISO14443A-CRC - no answer from card)
50 60 = Authenticate with KeyA
51 61 = Authenticate with KeyB
52 40 (7bits) = Used to put Chinese Changeable UID cards in special mode (must be followed by 43 (8bits) - answer: 0A)
58 A0 = Compatibility Write (to accomodate MIFARE commands)
59 1A = Step1 Authenticate
60 AF = Step2 Authenticate
67 SRIX4K (tag does not respond to 05)
69 0E xx = SELECT ID (xx = Chip-ID)
71 08 yy = Read Block (yy = block number)
72 09 yy dd dd dd dd = Write Block (yy = block number; dd dd dd dd = data to be written)
73 0C = Reset to Inventory
75 0A 11 22 33 44 55 66 = Authenticate (11 22 33 44 55 66 = data to authenticate)
79 MANDATORY COMMANDS (all ISO15693 tags must support those)
80 01 = Inventory (usage: 260100+2bytes ISO15693-CRC - answer: 12bytes)
82 OPTIONAL COMMANDS (not all tags support them)
83 20 = Read Block (usage: 0220+1byte block number+2bytes ISO15693-CRC - answer: 4bytes)
84 21 = Write Block (usage: 0221+1byte block number+4bytes data+2bytes ISO15693-CRC - answer: 4bytes)
86 23 = Read Multiple Blocks (usage: 0223+1byte 1st block to read+1byte last block to read+2bytes ISO15693-CRC)
93 2B = Get_System_Info (usage: 022B+2bytes ISO15693-CRC - answer: 14 or more bytes)
94 2C = Read Multiple Block Security Status (usage: 022C+1byte 1st block security to read+1byte last block security to read+2bytes ISO15693-CRC)
96 EM Microelectronic CUSTOM COMMANDS
97 A5 = Active EAS (followed by 1byte IC Manufacturer code+1byte EAS type)
98 A7 = Write EAS ID (followed by 1byte IC Manufacturer code+2bytes EAS value)
99 B8 = Get Protection Status for a specific block (followed by 1byte IC Manufacturer code+1byte block number+1byte of how many blocks after the previous is needed the info)
100 E4 = Login (followed by 1byte IC Manufacturer code+4bytes password)
101 NXP/Philips CUSTOM COMMANDS
103 A1 = Fast Inventory Read
108 A6 = Password Protect EAS
111 B0 = Inventory Page Read
112 B1 = Fast Inventory Page Read
113 B2 = Get Random Number
117 B6 = Bit Password Protection
118 B7 = Lock Page Protection Condition
119 B8 = Get Multiple Block Protection Status
122 BB = 64bit Password Protection
123 40 = Long Range CMD (Standard ISO/TR7003:1990)
126 #define ICLASS_CMD_ACTALL 0x0A
127 #define ICLASS_CMD_READ_OR_IDENTIFY 0x0C
128 #define ICLASS_CMD_SELECT 0x81
129 #define ICLASS_CMD_PAGESEL 0x84
130 #define ICLASS_CMD_READCHECK_KD 0x88
131 #define ICLASS_CMD_READCHECK_KC 0x18
132 #define ICLASS_CMD_CHECK 0x05
133 #define ICLASS_CMD_DETECT 0x0F
134 #define ICLASS_CMD_HALT 0x00
135 #define ICLASS_CMD_UPDATE 0x87
136 #define ICLASS_CMD_ACT 0x8E
137 #define ICLASS_CMD_READ4 0x06
140 #define ISO14443A_CMD_REQA 0x26
141 #define ISO14443A_CMD_READBLOCK 0x30
142 #define ISO14443A_CMD_WUPA 0x52
143 #define ISO14443A_CMD_ANTICOLL_OR_SELECT 0x93
144 #define ISO14443A_CMD_ANTICOLL_OR_SELECT_2 0x95
145 #define ISO14443A_CMD_WRITEBLOCK 0xA0 // or 0xA2 ?
146 #define ISO14443A_CMD_HALT 0x50
147 #define ISO14443A_CMD_RATS 0xE0
149 #define MIFARE_AUTH_KEYA 0x60
150 #define MIFARE_AUTH_KEYB 0x61
151 #define MIFARE_MAGICMODE 0x40
152 #define MIFARE_CMD_INC 0xC0
153 #define MIFARE_CMD_DEC 0xC1
154 #define MIFARE_CMD_RESTORE 0xC2
155 #define MIFARE_CMD_TRANSFER 0xB0
157 #define MIFARE_ULC_WRITE 0xA0
158 #define MIFARE_ULC_AUTH_1 0x1A
159 #define MIFARE_ULC_AUTH_2 0xAF
163 0E xx = SELECT ID (xx = Chip-ID)
165 08 yy = Read Block (yy = block number)
166 09 yy dd dd dd dd = Write Block (yy = block number; dd dd dd dd = data to be written)
167 0C = Reset to Inventory
169 0A 11 22 33 44 55 66 = Authenticate (11 22 33 44 55 66 = data to authenticate)
172 #define ISO14443B_REQB 0x05
173 #define ISO14443B_ATTRIB 0x1D
174 #define ISO14443B_HALT 0x50
175 #define ISO14443B_INITIATE 0x06
176 #define ISO14443B_SELECT 0x0E
177 #define ISO14443B_GET_UID 0x0B
178 #define ISO14443B_READ_BLK 0x08
179 #define ISO14443B_WRITE_BLK 0x09
180 #define ISO14443B_RESET 0x0C
181 #define ISO14443B_COMPLETION 0x0F
182 #define ISO14443B_AUTHENTICATE 0x0A
185 #define ISO15693_INVENTORY 0x01
186 #define ISO15693_STAYQUIET 0x02
188 #define ISO15693_READBLOCK 0x20
189 #define ISO15693_WRITEBLOCK 0x21
190 #define ISO15693_LOCKBLOCK 0x22
191 #define ISO15693_READ_MULTI_BLOCK 0x23
192 #define ISO15693_SELECT 0x25
193 #define ISO15693_RESET_TO_READY 0x26
194 #define ISO15693_WRITE_AFI 0x27
195 #define ISO15693_LOCK_AFI 0x28
196 #define ISO15693_WRITE_DSFID 0x29
197 #define ISO15693_LOCK_DSFID 0x2A
198 #define ISO15693_GET_SYSTEM_INFO 0x2B
199 #define ISO15693_READ_MULTI_SECSTATUS 0x2C
207 void annotateIso14443a(char *exp
, size_t size
, uint8_t* cmd
, uint8_t cmdsize
)
211 case ISO14443A_CMD_WUPA
: snprintf(exp
,size
,"WUPA"); break;
212 case ISO14443A_CMD_ANTICOLL_OR_SELECT
:{
213 // 93 20 = Anticollision (usage: 9320 - answer: 4bytes UID+1byte UID-bytes-xor)
214 // 93 70 = Select (usage: 9370+5bytes 9320 answer - answer: 1byte SAK)
217 snprintf(exp
,size
,"SELECT_UID"); break;
220 snprintf(exp
,size
,"ANTICOLL"); break;
223 case ISO14443A_CMD_ANTICOLL_OR_SELECT_2
:{
224 //95 20 = Anticollision of cascade level2
225 //95 70 = Select of cascade level2
228 snprintf(exp
,size
,"SELECT_UID-2"); break;
231 snprintf(exp
,size
,"ANTICOLL-2"); break;
234 case ISO14443A_CMD_REQA
: snprintf(exp
,size
,"REQA"); break;
235 case ISO14443A_CMD_READBLOCK
: snprintf(exp
,size
,"READBLOCK(%d)",cmd
[1]); break;
236 case ISO14443A_CMD_WRITEBLOCK
: snprintf(exp
,size
,"WRITEBLOCK(%d)",cmd
[1]); break;
237 case ISO14443A_CMD_HALT
: snprintf(exp
,size
,"HALT"); break;
238 case ISO14443A_CMD_RATS
: snprintf(exp
,size
,"RATS"); break;
239 case MIFARE_CMD_INC
: snprintf(exp
,size
,"INC(%d)",cmd
[1]); break;
240 case MIFARE_CMD_DEC
: snprintf(exp
,size
,"DEC(%d)",cmd
[1]); break;
241 case MIFARE_CMD_RESTORE
: snprintf(exp
,size
,"RESTORE(%d)",cmd
[1]); break;
242 case MIFARE_CMD_TRANSFER
: snprintf(exp
,size
,"TRANSFER(%d)",cmd
[1]); break;
243 case MIFARE_AUTH_KEYA
: snprintf(exp
,size
,"AUTH-A"); break;
244 case MIFARE_AUTH_KEYB
: snprintf(exp
,size
,"AUTH-B"); break;
245 case MIFARE_MAGICMODE
: snprintf(exp
,size
,"MAGIC"); break;
246 default: snprintf(exp
,size
,"?"); break;
251 void annotateIclass(char *exp
, size_t size
, uint8_t* cmd
, uint8_t cmdsize
)
255 case ICLASS_CMD_ACTALL
: snprintf(exp
,size
,"ACTALL"); break;
256 case ICLASS_CMD_READ_OR_IDENTIFY
:{
258 snprintf(exp
,size
,"READ(%d)",cmd
[1]);
260 snprintf(exp
,size
,"IDENTIFY");
264 case ICLASS_CMD_SELECT
: snprintf(exp
,size
,"SELECT"); break;
265 case ICLASS_CMD_PAGESEL
: snprintf(exp
,size
,"PAGESEL(%d)", cmd
[1]); break;
266 case ICLASS_CMD_READCHECK_KC
:snprintf(exp
,size
,"READCHECK[Kc](%d)", cmd
[1]); break;
267 case ICLASS_CMD_READCHECK_KD
:snprintf(exp
,size
,"READCHECK[Kd](%d)", cmd
[1]); break;
268 case ICLASS_CMD_CHECK
: snprintf(exp
,size
,"CHECK"); break;
269 case ICLASS_CMD_DETECT
: snprintf(exp
,size
,"DETECT"); break;
270 case ICLASS_CMD_HALT
: snprintf(exp
,size
,"HALT"); break;
271 case ICLASS_CMD_UPDATE
: snprintf(exp
,size
,"UPDATE(%d)",cmd
[1]); break;
272 case ICLASS_CMD_ACT
: snprintf(exp
,size
,"ACT"); break;
273 case ICLASS_CMD_READ4
: snprintf(exp
,size
,"READ4(%d)",cmd
[1]); break;
274 default: snprintf(exp
,size
,"?"); break;
279 void annotateIso15693(char *exp
, size_t size
, uint8_t* cmd
, uint8_t cmdsize
)
285 case ISO15693_INVENTORY
:snprintf(exp
, size
, "INVENTORY");break;
286 case ISO15693_STAYQUIET
:snprintf(exp
, size
, "STAY_QUIET");break;
287 default: snprintf(exp
,size
,"?"); break;
290 }else if(cmd
[0] == 0x02)
294 case ISO15693_READBLOCK
:snprintf(exp
, size
, "READBLOCK");break;
295 case ISO15693_WRITEBLOCK
:snprintf(exp
, size
, "WRITEBLOCK");break;
296 case ISO15693_LOCKBLOCK
:snprintf(exp
, size
, "LOCKBLOCK");break;
297 case ISO15693_READ_MULTI_BLOCK
:snprintf(exp
, size
, "READ_MULTI_BLOCK");break;
298 case ISO15693_SELECT
:snprintf(exp
, size
, "SELECT");break;
299 case ISO15693_RESET_TO_READY
:snprintf(exp
, size
, "RESET_TO_READY");break;
300 case ISO15693_WRITE_AFI
:snprintf(exp
, size
, "WRITE_AFI");break;
301 case ISO15693_LOCK_AFI
:snprintf(exp
, size
, "LOCK_AFI");break;
302 case ISO15693_WRITE_DSFID
:snprintf(exp
, size
, "WRITE_DSFID");break;
303 case ISO15693_LOCK_DSFID
:snprintf(exp
, size
, "LOCK_DSFID");break;
304 case ISO15693_GET_SYSTEM_INFO
:snprintf(exp
, size
, "GET_SYSTEM_INFO");break;
305 case ISO15693_READ_MULTI_SECSTATUS
:snprintf(exp
, size
, "READ_MULTI_SECSTATUS");break;
306 default: snprintf(exp
,size
,"?"); break;
313 0E xx = SELECT ID (xx = Chip-ID)
315 08 yy = Read Block (yy = block number)
316 09 yy dd dd dd dd = Write Block (yy = block number; dd dd dd dd = data to be written)
317 0C = Reset to Inventory
319 0A 11 22 33 44 55 66 = Authenticate (11 22 33 44 55 66 = data to authenticate)
322 void annotateIso14443b(char *exp
, size_t size
, uint8_t* cmd
, uint8_t cmdsize
)
325 case ISO14443B_REQB
: snprintf(exp
,size
,"REQB");break;
326 case ISO14443B_ATTRIB
: snprintf(exp
,size
,"ATTRIB");break;
327 case ISO14443B_HALT
: snprintf(exp
,size
,"HALT");break;
328 case ISO14443B_INITIATE
: snprintf(exp
,size
,"INITIATE");break;
329 case ISO14443B_SELECT
: snprintf(exp
,size
,"SELECT(%d)",cmd
[1]);break;
330 case ISO14443B_GET_UID
: snprintf(exp
,size
,"GET UID");break;
331 case ISO14443B_READ_BLK
: snprintf(exp
,size
,"READ_BLK(%d)", cmd
[1]);break;
332 case ISO14443B_WRITE_BLK
: snprintf(exp
,size
,"WRITE_BLK(%d)",cmd
[1]);break;
333 case ISO14443B_RESET
: snprintf(exp
,size
,"RESET");break;
334 case ISO14443B_COMPLETION
: snprintf(exp
,size
,"COMPLETION");break;
335 case ISO14443B_AUTHENTICATE
: snprintf(exp
,size
,"AUTHENTICATE");break;
336 default : snprintf(exp
,size
,"?");break;
342 * @brief iso14443B_CRC_Ok Checks CRC in command or response
346 * @return 0 : CRC-command, CRC not ok
347 * 1 : CRC-command, CRC ok
348 * 2 : Not crc-command
351 uint8_t iso14443B_CRC_check(bool isResponse
, uint8_t* data
, uint8_t len
)
355 if(len
<= 2) return 2;
357 ComputeCrc14443(CRC_14443_B
, data
, len
-2, &b1
, &b2
);
358 if(b1
!= data
[len
-2] || b2
!= data
[len
-1]) {
365 * @brief iclass_CRC_Ok Checks CRC in command or response
369 * @return 0 : CRC-command, CRC not ok
370 * 1 : CRC-command, CRC ok
371 * 2 : Not crc-command
373 uint8_t iclass_CRC_check(bool isResponse
, uint8_t* data
, uint8_t len
)
375 if(len
< 4) return 2;//CRC commands (and responses) are all at least 4 bytes
379 if(!isResponse
)//Commands to tag
382 These commands should have CRC. Total length leftmost
385 12 UPDATE - unsecured, ends with CRC16
386 14 UPDATE - secured, ends with signature instead
389 if(len
== 4 || len
== 12)//Covers three of them
391 //Don't include the command byte
392 ComputeCrc14443(CRC_ICLASS
, (data
+1), len
-3, &b1
, &b2
);
393 return b1
== data
[len
-2] && b2
== data
[len
-1];
398 These tag responses should have CRC. Total length leftmost
400 10 READ data[8] crc[2]
401 34 READ4 data[32]crc[2]
402 10 UPDATE data[8] crc[2]
403 10 SELECT csn[8] crc[2]
404 10 IDENTIFY asnb[8] crc[2]
405 10 PAGESEL block1[8] crc[2]
406 10 DETECT csn[8] crc[2]
410 4 CHECK chip_response[4]
415 In conclusion, without looking at the command; any response
416 of length 10 or 34 should have CRC
418 if(len
!= 10 && len
!= 34) return true;
420 ComputeCrc14443(CRC_ICLASS
, data
, len
-2, &b1
, &b2
);
421 return b1
== data
[len
-2] && b2
== data
[len
-1];
425 uint16_t printTraceLine(uint16_t tracepos
, uint8_t* trace
, uint8_t protocol
, bool showWaitCycles
)
428 uint16_t duration
, data_len
,parity_len
;
430 uint32_t timestamp
, first_timestamp
, EndOfTransmissionTimestamp
;
431 char explanation
[30] = {0};
433 first_timestamp
= *((uint32_t *)(trace
));
434 timestamp
= *((uint32_t *)(trace
+ tracepos
));
435 // Break and stick with current result if buffer was not completely full
436 if (timestamp
== 0x44444444) return TRACE_SIZE
;
439 duration
= *((uint16_t *)(trace
+ tracepos
));
441 data_len
= *((uint16_t *)(trace
+ tracepos
));
444 if (data_len
& 0x8000) {
450 parity_len
= (data_len
-1)/8 + 1;
452 if (tracepos
+ data_len
+ parity_len
>= TRACE_SIZE
) {
455 uint8_t *frame
= trace
+ tracepos
;
456 tracepos
+= data_len
;
457 uint8_t *parityBytes
= trace
+ tracepos
;
458 tracepos
+= parity_len
;
461 //--- Draw the data column
462 //char line[16][110];
465 for (int j
= 0; j
< data_len
&& j
/16 < 16; j
++) {
467 int oddparity
= 0x01;
470 for (k
=0 ; k
<8 ; k
++) {
471 oddparity
^= (((frame
[j
] & 0xFF) >> k
) & 0x01);
474 uint8_t parityBits
= parityBytes
[j
>>3];
475 if (isResponse
&& (oddparity
!= ((parityBits
>> (7-(j
&0x0007))) & 0x01))) {
476 snprintf(line
[j
/16]+(( j
% 16) * 4),110, "%02x! ", frame
[j
]);
479 snprintf(line
[j
/16]+(( j
% 16) * 4),110, "%02x! ", frame
[j
]);
485 sprintf(line
[0],"<empty trace - possible error>");
488 //--- Draw the CRC column
489 uint8_t crcStatus
= 2;
493 if(protocol
== ICLASS
)
495 crcStatus
= iclass_CRC_check(isResponse
, frame
, data_len
);
497 }else if (protocol
== ISO_14443B
)
499 crcStatus
= iso14443B_CRC_check(isResponse
, frame
, data_len
);
501 else if (protocol
== ISO_14443A
){//Iso 14443a
503 ComputeCrc14443(CRC_14443_A
, frame
, data_len
-2, &b1
, &b2
);
505 if (b1
!= frame
[data_len
-2] || b2
!= frame
[data_len
-1]) {
506 if(!(isResponse
& (data_len
< 6)))
513 //0 CRC-command, CRC not ok
514 //1 CRC-command, CRC ok
516 char *crc
= (crcStatus
== 0 ? "!crc" : (crcStatus
== 1 ? " ok " : " "));
518 EndOfTransmissionTimestamp
= timestamp
+ duration
;
522 if(protocol
== ICLASS
)
523 annotateIclass(explanation
,sizeof(explanation
),frame
,data_len
);
524 else if (protocol
== ISO_14443A
)
525 annotateIso14443a(explanation
,sizeof(explanation
),frame
,data_len
);
526 else if(protocol
== ISO_14443B
)
527 annotateIso14443b(explanation
,sizeof(explanation
),frame
,data_len
);
530 int num_lines
= MIN((data_len
- 1)/16 + 1, 16);
531 for (int j
= 0; j
< num_lines
; j
++) {
533 PrintAndLog(" %9d | %9d | %s | %-64s| %s| %s",
534 (timestamp
- first_timestamp
),
535 (EndOfTransmissionTimestamp
- first_timestamp
),
536 (isResponse
? "Tag" : "Rdr"),
538 (j
== num_lines
-1) ? crc
: " ",
539 (j
== num_lines
-1) ? explanation
: "");
541 PrintAndLog(" | | | %-64s| %s| %s",
543 (j
== num_lines
-1)?crc
:" ",
544 (j
== num_lines
-1) ? explanation
: "");
548 bool next_isResponse
= *((uint16_t *)(trace
+ tracepos
+ 6)) & 0x8000;
550 if (showWaitCycles
&& !isResponse
&& next_isResponse
) {
551 uint32_t next_timestamp
= *((uint32_t *)(trace
+ tracepos
));
552 if (next_timestamp
!= 0x44444444) {
553 PrintAndLog(" %9d | %9d | %s | fdt (Frame Delay Time): %d",
554 (EndOfTransmissionTimestamp
- first_timestamp
),
555 (next_timestamp
- first_timestamp
),
557 (next_timestamp
- EndOfTransmissionTimestamp
));
563 int CmdHFList(const char *Cmd
)
565 bool showWaitCycles
= false;
567 int tlen
= param_getstr(Cmd
,0,type
);
568 char param
= param_getchar(Cmd
, 1);
570 uint8_t protocol
= 0;
576 if(param
== 'h' || (param
!=0 && param
!= 'f'))
582 if(strcmp(type
, "iclass") == 0)
585 }else if(strcmp(type
, "14a") == 0)
587 protocol
= ISO_14443A
;
589 else if(strcmp(type
, "14b") == 0)
591 protocol
= ISO_14443B
;
592 }else if(strcmp(type
,"raw")== 0)
594 protocol
= -1;//No crc, no annotations
601 PrintAndLog("List protocol data in trace buffer.");
602 PrintAndLog("Usage: hf list [14a|14b|iclass] [f]");
603 PrintAndLog(" 14a - interpret data as iso14443a communications");
604 PrintAndLog(" 14b - interpret data as iso14443b communications");
605 PrintAndLog(" iclass - interpret data as iclass communications");
606 PrintAndLog(" raw - just show raw data");
607 PrintAndLog(" f - show frame delay times as well");
609 PrintAndLog("example: hf list 14a f");
610 PrintAndLog("example: hf list iclass");
616 showWaitCycles
= true;
620 uint8_t trace
[TRACE_SIZE
];
621 uint16_t tracepos
= 0;
622 GetFromBigBuf(trace
, TRACE_SIZE
, 0);
623 WaitForResponse(CMD_ACK
, NULL
);
624 PrintAndLog("Recorded Activity");
626 PrintAndLog("Start = Start of Start Bit, End = End of last modulation. Src = Source of Transfer");
627 PrintAndLog("iso14443a - All times are in carrier periods (1/13.56Mhz)");
628 PrintAndLog("iClass - Timings are not as accurate");
630 PrintAndLog(" Start | End | Src | Data (! denotes parity error) | CRC | Annotation |");
631 PrintAndLog("-----------|-----------|-----|-----------------------------------------------------------------|-----|--------------------|");
633 while(tracepos
< TRACE_SIZE
)
635 tracepos
= printTraceLine(tracepos
, trace
, protocol
, showWaitCycles
);
641 static command_t CommandTable
[] =
643 {"help", CmdHelp
, 1, "This help"},
644 {"14a", CmdHF14A
, 1, "{ ISO14443A RFIDs... }"},
645 {"14b", CmdHF14B
, 1, "{ ISO14443B RFIDs... }"},
646 {"15", CmdHF15
, 1, "{ ISO15693 RFIDs... }"},
647 {"epa", CmdHFEPA
, 1, "{ German Identification Card... }"},
648 {"legic", CmdHFLegic
, 0, "{ LEGIC RFIDs... }"},
649 {"iclass", CmdHFiClass
, 1, "{ ICLASS RFIDs... }"},
650 {"mf", CmdHFMF
, 1, "{ MIFARE RFIDs... }"},
651 {"tune", CmdHFTune
, 0, "Continuously measure HF antenna tuning"},
652 {"list", CmdHFList
, 1, "List protocol data in trace buffer"},
653 {NULL
, NULL
, 0, NULL
}
656 int CmdHF(const char *Cmd
)
658 CmdsParse(CommandTable
, Cmd
);
662 int CmdHelp(const char *Cmd
)
664 CmdsHelp(CommandTable
);