1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 // Modified 2010 by <adrian -at- atrox.at>
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // High frequency ISO15693 commands
10 //-----------------------------------------------------------------------------
11 // There are three basic operation modes, depending on which device (proxmark/pc)
12 // the signal processing, (de)modulation, transmission protocol and logic is done.
14 // All steps are done on the proxmark, the output of the commands is returned via
15 // USB-debug-print commands.
17 // The protocol is done on the PC, passing only Iso15693 data frames via USB. This
18 // allows direct communication with a tag on command level
20 // The proxmark just samples the antenna and passes this "analog" data via USB to
21 // the client. Signal Processing & decoding is done on the pc. This is the slowest
22 // variant, but offers the possibility to analyze the waveforms directly.
32 #include "cmdparser.h"
34 #include "iso15693tools.h"
37 #define FrameSOF Iso15693FrameSOF
38 #define Logic0 Iso15693Logic0
39 #define Logic1 Iso15693Logic1
40 #define FrameEOF Iso15693FrameEOF
42 #define Crc(data,datalen) Iso15693Crc(data,datalen)
43 #define AddCrc(data,datalen) Iso15693AddCrc(data,datalen)
44 #define sprintUID(target,uid) Iso15693sprintUID(target,uid)
46 static int CmdHelp(const char *Cmd
);
48 // structure and database for uid -> tagtype lookups
51 int mask
; // how many MSB bits used
56 const productName uidmapping
[] = {
57 { 0xE001000000000000LL
, 16, "Motorola" },
58 { 0xE002000000000000LL
, 16, "ST Microelectronics" },
59 { 0xE003000000000000LL
, 16, "Hitachi" },
60 { 0xE004000000000000LL
, 16, "Philips" },
61 { 0xE004010000000000LL
, 24, "Philips; IC SL2 ICS20" },
62 { 0xE005000000000000LL
, 16, "Infineon" },
63 { 0xE005400000000000LL
, 24, "Infineon; 56x32bit" },
64 { 0xE006000000000000LL
, 16, "Cylinc" },
65 { 0xE007000000000000LL
, 16, "Texas Instrument; " },
66 { 0xE007000000000000LL
, 20, "Texas Instrument; Tag-it HF-I Plus Inlay; 64x32bit" },
67 { 0xE007100000000000LL
, 20, "Texas Instrument; Tag-it HF-I Plus Chip; 64x32bit" },
68 { 0xE007C00000000000LL
, 23, "Texas Instrument; Tag-it HF-I Standard; 8x32bit" },
69 { 0xE007C40000000000LL
, 23, "Texas Instrument; Tag-it HF-I Pro; 8x23bit; password" },
70 { 0xE008000000000000LL
, 16, "Fujitsu" },
71 { 0xE009000000000000LL
, 16, "Matsushita" },
72 { 0xE00A000000000000LL
, 16, "NEC" },
73 { 0xE00B000000000000LL
, 16, "Oki Electric" },
74 { 0xE00C000000000000LL
, 16, "Toshiba" },
75 { 0xE00D000000000000LL
, 16, "Mitsubishi" },
76 { 0xE00E000000000000LL
, 16, "Samsung" },
77 { 0xE00F000000000000LL
, 16, "Hyundai" },
78 { 0xE010000000000000LL
, 16, "LG-Semiconductors" },
79 { 0xE012000000000000LL
, 16, "HID Corporation" },
80 { 0xE016000000000000LL
, 16, "EM-Marin SA (Skidata)" },
81 { 0xE016040000000000LL
, 24, "EM-Marin SA (Skidata Keycard-eco); no memory" },
82 { 0xE016100000000000LL
, 24, "EM-Marin SA (Skidata); EM4135; 36x64bit start page 13" },
83 { 0,0,"no tag-info available" } // must be the last entry
87 // fast method to just read the UID of a tag (collission detection not supported)
88 // *buf should be large enough to fit the 64bit uid
89 // returns 1 if suceeded
90 int getUID(uint8_t *buf
)
94 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
95 uint8_t *req
=c
.d
.asBytes
;
98 for (int retry
=0;retry
<3; retry
++) { // don't give up the at the first try
100 req
[0]= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
101 ISO15_REQ_INVENTORY
| ISO15_REQINV_SLOT1
;
102 req
[1]=ISO15_CMD_INVENTORY
;
103 req
[2]=0; // mask length
104 reqlen
=AddCrc(req
,3);
109 r
=WaitForResponseTimeout(CMD_ACK
,1000);
113 if (r
->arg
[0]>=12 && ISO15_CRC_CHECK
==Crc(recv
,12)) {
114 memcpy(buf
,&recv
[2],8);
124 // get a product description based on the UID
126 // returns description of the best match
127 static char* getTagInfo(uint8_t *uid
) {
130 memcpy(&myuid
,uid
,sizeof(uint64_t));
131 while (uidmapping
[i
].mask
>0) {
132 mask
=(~0LL) <<(64-uidmapping
[i
].mask
);
133 if ((myuid
& mask
) == uidmapping
[i
].uid
) {
137 if (uidmapping
[i
].mask
>uidmapping
[best
].mask
) {
145 if (best
>=0) return uidmapping
[best
].desc
;
147 return uidmapping
[i
].desc
;
151 // return a clear-text message to an errorcode
152 static char* TagErrorStr(uint8_t error
) {
154 case 0x01: return "The command is not supported";
155 case 0x02: return "The command is not recognised";
156 case 0x03: return "The option is not supported.";
157 case 0x0f: return "Unknown error.";
158 case 0x10: return "The specified block is not available (doesn’t exist).";
159 case 0x11: return "The specified block is already -locked and thus cannot be locked again";
160 case 0x12: return "The specified block is locked and its content cannot be changed.";
161 case 0x13: return "The specified block was not successfully programmed.";
162 case 0x14: return "The specified block was not successfully locked.";
163 default: return "Reserved for Future Use or Custom command error.";
169 int CmdHF15Demod(const char *Cmd
)
171 // The sampling rate is 106.353 ksps/s, for T = 18.8 us
174 int max
= 0, maxPos
= 0;
178 if (GraphTraceLen
< 1000) return 0;
180 // First, correlate for SOF
181 for (i
= 0; i
< 100; i
++) {
183 for (j
= 0; j
< arraylen(FrameSOF
); j
+= skip
) {
184 corr
+= FrameSOF
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
191 PrintAndLog("SOF at %d, correlation %d", maxPos
,
192 max
/ (arraylen(FrameSOF
) / skip
));
194 i
= maxPos
+ arraylen(FrameSOF
) / skip
;
197 memset(outBuf
, 0, sizeof(outBuf
));
200 int corr0
= 0, corr1
= 0, corrEOF
= 0;
201 for (j
= 0; j
< arraylen(Logic0
); j
+= skip
) {
202 corr0
+= Logic0
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
204 for (j
= 0; j
< arraylen(Logic1
); j
+= skip
) {
205 corr1
+= Logic1
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
207 for (j
= 0; j
< arraylen(FrameEOF
); j
+= skip
) {
208 corrEOF
+= FrameEOF
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
210 // Even things out by the length of the target waveform.
214 if (corrEOF
> corr1
&& corrEOF
> corr0
) {
215 PrintAndLog("EOF at %d", i
);
217 } else if (corr1
> corr0
) {
218 i
+= arraylen(Logic1
) / skip
;
221 i
+= arraylen(Logic0
) / skip
;
228 if ((i
+ (int)arraylen(FrameEOF
)) >= GraphTraceLen
) {
229 PrintAndLog("ran off end!");
234 PrintAndLog("error, uneven octet! (discard extra bits!)");
235 PrintAndLog(" mask=%02x", mask
);
237 PrintAndLog("%d octets", k
);
239 for (i
= 0; i
< k
; i
++) {
240 PrintAndLog("# %2d: %02x ", i
, outBuf
[i
]);
242 PrintAndLog("CRC=%04x", Iso15693Crc(outBuf
, k
- 2));
248 // * Acquire Samples as Reader (enables carrier, sends inquiry)
249 int CmdHF15Read(const char *Cmd
)
251 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693
};
256 // Record Activity without enabeling carrier
257 int CmdHF15Record(const char *Cmd
)
259 UsbCommand c
= {CMD_RECORD_RAW_ADC_SAMPLES_ISO_15693
};
264 int CmdHF15Reader(const char *Cmd
)
266 UsbCommand c
= {CMD_READER_ISO_15693
, {strtol(Cmd
, NULL
, 0), 0, 0}};
271 // Simulation is still not working very good
272 int CmdHF15Sim(const char *Cmd
)
274 UsbCommand c
= {CMD_SIMTAG_ISO_15693
, {strtol(Cmd
, NULL
, 0), 0, 0}};
279 // finds the AFI (Application Family Idendifier) of a card, by trying all values
280 // (There is no standard way of reading the AFI, allthough some tags support this)
281 int CmdHF15Afi(const char *Cmd
)
283 UsbCommand c
= {CMD_ISO_15693_FIND_AFI
, {strtol(Cmd
, NULL
, 0), 0, 0}};
288 // Reads all memory pages
289 int CmdHF15DumpMem(const char*Cmd
) {
293 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
294 uint8_t *req
=c
.d
.asBytes
;
300 PrintAndLog("No Tag found.");
304 PrintAndLog("Reading memory from tag UID=%s",sprintUID(NULL
,uid
));
305 PrintAndLog("Tag Info: %s",getTagInfo(uid
));
307 for (int retry
=0; retry
<5; retry
++) {
309 req
[0]= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
310 ISO15_REQ_NONINVENTORY
| ISO15_REQ_ADDRESS
;
311 req
[1]=ISO15_CMD_READ
;
312 memcpy(&req
[2],uid
,8);
314 reqlen
=AddCrc(req
,11);
319 r
=WaitForResponseTimeout(CMD_ACK
,1000);
323 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
324 if (!(recv
[0] & ISO15_RES_ERROR
)) {
326 *output
=0; // reset outputstring
327 sprintf(output
, "Block %2i ",blocknum
);
328 for ( int i
=1; i
<r
->arg
[0]-2; i
++) { // data in hex
329 sprintf(output
+strlen(output
),"%02hX ",recv
[i
]);
332 for ( int i
=1; i
<r
->arg
[0]-2; i
++) { // data in cleaned ascii
333 sprintf(output
+strlen(output
),"%c",(recv
[i
]>31 && recv
[i
]<127)?recv
[i
]:'.');
335 PrintAndLog("%s",output
);
337 // PrintAndLog("bn=%i",blocknum);
339 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
342 } // else PrintAndLog("crc");
343 } // else PrintAndLog("r null");
346 if (r
&& r
->arg
[0]<3)
347 PrintAndLog("Lost Connection");
348 else if (r
&& ISO15_CRC_CHECK
!=Crc(r
->d
.asBytes
,r
->arg
[0]))
349 PrintAndLog("CRC Failed");
351 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
358 static command_t CommandTable15
[] =
360 {"help", CmdHF15Help
, 1, "This help"},
361 {"demod", CmdHF15Demod
, 1, "Demodulate ISO15693 from tag"},
362 {"read", CmdHF15Read
, 0, "Read HF tag (ISO 15693)"},
363 {"record", CmdHF15Record
, 0, "Record Samples (ISO 15693)"}, // atrox
364 {"reader", CmdHF15Reader
, 0, "Act like an ISO15693 reader"},
365 {"sim", CmdHF15Sim
, 0, "Fake an ISO15693 tag"},
366 {"cmd", CmdHF15Cmd
, 0, "Send direct commands to ISO15693 tag"},
367 {"findafi", CmdHF15Afi
, 0, "Brute force AFI of an ISO15693 tag"},
368 {"dumpmemory", CmdHF15DumpMem
, 0, "Read all memory pages of an ISO15693 tag"},
369 {NULL
, NULL
, 0, NULL
}
372 int CmdHF15(const char *Cmd
)
374 CmdsParse(CommandTable15
, Cmd
);
378 int CmdHF15Help(const char *Cmd
)
380 CmdsHelp(CommandTable15
);
385 // "HF 15 Cmd" Interface
386 // Allows direct communication with the tag on command level
388 int CmdHF15CmdInquiry(const char *Cmd
)
392 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
393 uint8_t *req
=c
.d
.asBytes
;
396 req
[0]= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
397 ISO15_REQ_INVENTORY
| ISO15_REQINV_SLOT1
;
398 req
[1]=ISO15_CMD_INVENTORY
;
399 req
[2]=0; // mask length
400 reqlen
=AddCrc(req
,3);
405 r
=WaitForResponseTimeout(CMD_ACK
,1000);
410 PrintAndLog("UID=%s",sprintUID(NULL
,&recv
[2]));
411 PrintAndLog("Tag Info: %s",getTagInfo(&recv
[2]));
413 PrintAndLog("Response to short, just %i bytes. No tag?\n",r
->arg
[0]);
416 PrintAndLog("timeout.");
422 // Turns debugging on(1)/off(0)
423 int CmdHF15CmdDebug( const char *cmd
) {
426 PrintAndLog("Usage: hf 15 cmd debug <0/1>");
427 PrintAndLog(" 0..no debugging output 1..turn debugging on");
431 UsbCommand c
= {CMD_ISO_15693_DEBUG
, {debug
, 0, 0}};
437 int CmdHF15CmdRaw (const char *cmd
) {
440 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
447 unsigned int datalen
=0, temp
;
451 PrintAndLog("Usage: hf 15 cmd raw [-r] [-2] [-c] <0A 0B 0C ... hex>");
452 PrintAndLog(" -r do not read response");
453 PrintAndLog(" -2 use slower '1 out of 256' mode");
454 PrintAndLog(" -c calculate and append CRC");
455 PrintAndLog(" Tip: turn on debugging for verbose output");
460 while (*cmd
==' ' || *cmd
=='\t') cmd
++;
462 while (cmd
[i
]!='\0') {
463 if (cmd
[i
]==' ' || cmd
[i
]=='\t') { i
++; continue; }
478 PrintAndLog("Invalid option");
484 if ((cmd
[i
]>='0' && cmd
[i
]<='9') ||
485 (cmd
[i
]>='a' && cmd
[i
]<='f') ||
486 (cmd
[i
]>='A' && cmd
[i
]<='F') ) {
487 buf
[strlen(buf
)+1]=0;
488 buf
[strlen(buf
)]=cmd
[i
];
491 if (strlen(buf
)>=2) {
492 sscanf(buf
,"%x",&temp
);
493 data
[datalen
]=(uint8_t)(temp
& 0xff);
499 PrintAndLog("Invalid char on input");
502 if (crc
) datalen
=AddCrc(data
,datalen
);
507 memcpy(c
.d
.asBytes
,data
,datalen
);
512 r
=WaitForResponseTimeout(CMD_ACK
,1000);
516 PrintAndLog("received %i octets",r
->arg
[0]);
519 PrintAndLog("timeout while waiting for reply.");
527 int prepareHF15Cmd(char **cmd
, UsbCommand
*c
, uint8_t iso15cmd
[], int iso15cmdlen
) {
529 uint8_t *req
=c
->d
.asBytes
, uid
[8];
533 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
535 if (strstr(*cmd
,"-2")==*cmd
) {
536 c
->arg
[1]=0; // use 1of256
541 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
543 if (strstr(*cmd
,"-o")==*cmd
) {
544 req
[reqlen
]=ISO15_REQ_OPTION
;
549 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
553 PrintAndLog("missing addr");
558 // you must have selected the tag earlier
559 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
560 ISO15_REQ_NONINVENTORY
| ISO15_REQ_SELECT
;
561 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
566 // unaddressed mode may not be supported by all vendors
567 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
568 ISO15_REQ_NONINVENTORY
;
569 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
573 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
574 ISO15_REQ_NONINVENTORY
| ISO15_REQ_ADDRESS
;
575 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
578 PrintAndLog("No Tag found");
581 memcpy(req
+reqlen
,uid
,8);
582 PrintAndLog("Detected UID %s",sprintUID(NULL
,uid
));
586 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
587 ISO15_REQ_NONINVENTORY
| ISO15_REQ_ADDRESS
;
588 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
591 /* sscanf(cmd,"%hX%hX%hX%hX%hX%hX%hX%hX",
592 (short unsigned int *)&uid[7],(short unsigned int *)&uid[6],
593 (short unsigned int *)&uid[5],(short unsigned int *)&uid[4],
594 (short unsigned int *)&uid[3],(short unsigned int *)&uid[2],
595 (short unsigned int *)&uid[1],(short unsigned int *)&uid[0]); */
596 for (int i
=0;i
<8 && (*cmd
)[i
*2] && (*cmd
)[i
*2+1];i
++) { // parse UID
597 sscanf((char[]){(*cmd
)[i
*2],(*cmd
)[i
*2+1],0},"%X",&temp
);
601 PrintAndLog("Using UID %s",sprintUID(NULL
,uid
));
602 memcpy(&req
[reqlen
],&uid
[0],8);
605 // skip to next space
606 while (**cmd
!=' ' && **cmd
!='\t') (*cmd
)++;
607 // skip over the space
608 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
616 int CmdHF15CmdRead(const char *Cmd
) {
619 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
620 uint8_t *req
=c
.d
.asBytes
;
621 int reqlen
=0, pagenum
;
630 PrintAndLog("Usage: hf 15 cmd read [options] <uid|s|*> <page#>");
631 PrintAndLog(" options:");
632 PrintAndLog(" -2 use slower '1 out of 256' mode");
633 PrintAndLog(" uid (either): ");
634 PrintAndLog(" <8B hex> full UID eg E011223344556677");
635 PrintAndLog(" s selected tag");
636 PrintAndLog(" u unaddressed mode");
637 PrintAndLog(" * scan for tag");
638 PrintAndLog(" page#: page number 0-255");
642 prepareHF15Cmd(&cmd
, &c
,(uint8_t[]){ISO15_CMD_READ
},1);
645 pagenum
=strtol(cmd
,NULL
,0);
647 PrintAndLog("invalid pagenum");
651 req
[reqlen
++]=(uint8_t)pagenum
;
653 reqlen
=AddCrc(req
,reqlen
);
659 r
=WaitForResponseTimeout(CMD_ACK
,1000);
661 if (r
!=NULL
&& r
->arg
[0]>2) {
663 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
664 if (!(recv
[0] & ISO15_RES_ERROR
)) {
665 *output
=0; // reset outputstring
666 //sprintf(output, "Block %2i ",blocknum);
667 for ( int i
=1; i
<r
->arg
[0]-2; i
++) {
668 sprintf(output
+strlen(output
),"%02hX ",recv
[i
]);
671 for ( int i
=1; i
<r
->arg
[0]-2; i
++) {
672 sprintf(output
+strlen(output
),"%c",recv
[i
]>31 && recv
[i
]<127?recv
[i
]:'.');
674 PrintAndLog("%s",output
);
676 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
679 PrintAndLog("CRC failed");
682 PrintAndLog("no answer");
689 int CmdHF15CmdWrite(const char *Cmd
) {
692 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
693 uint8_t *req
=c
.d
.asBytes
;
694 int reqlen
=0, pagenum
, temp
;
703 PrintAndLog("Usage: hf 15 cmd write [options] <uid|s|*> <page#> <hexdata>");
704 PrintAndLog(" options:");
705 PrintAndLog(" -2 use slower '1 out of 256' mode");
706 PrintAndLog(" -o set OPTION Flag (needed for TI)");
707 PrintAndLog(" uid (either): ");
708 PrintAndLog(" <8B hex> full UID eg E011223344556677");
709 PrintAndLog(" s selected tag");
710 PrintAndLog(" u unaddressed mode");
711 PrintAndLog(" * scan for tag");
712 PrintAndLog(" page#: page number 0-255");
713 PrintAndLog(" hexdata: data to be written eg AA BB CC DD");
717 prepareHF15Cmd(&cmd
, &c
,(uint8_t[]){ISO15_CMD_WRITE
},1);
720 // *cmd -> page num ; *cmd2 -> data
722 while (*cmd2
!=' ' && *cmd2
!='\t' && *cmd2
) cmd2
++;
726 pagenum
=strtol(cmd
,NULL
,0);
728 PrintAndLog("invalid pagenum");
731 req
[reqlen
++]=(uint8_t)pagenum
;
734 while (cmd2
[0] && cmd2
[1]) { // hexdata, read by 2 hexchars
739 sscanf((char[]){cmd2
[0],cmd2
[1],0},"%X",&temp
);
740 req
[reqlen
++]=temp
& 0xff;
744 reqlen
=AddCrc(req
,reqlen
);
750 r
=WaitForResponseTimeout(CMD_ACK
,2000);
752 if (r
!=NULL
&& r
->arg
[0]>2) {
754 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
755 if (!(recv
[0] & ISO15_RES_ERROR
)) {
758 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
761 PrintAndLog("CRC failed");
764 PrintAndLog("no answer");
772 static command_t CommandTable15Cmd
[] =
774 {"help", CmdHF15CmdHelp
, 1, "This Help"},
775 {"inquiry", CmdHF15CmdInquiry
, 0, "Search for tags in range"},
777 {"select", CmdHF15CmdSelect, 0, "Select an tag with a specific UID for further commands"},
779 {"read", CmdHF15CmdRead
, 0, "Read a block"},
780 {"write", CmdHF15CmdWrite
, 0, "Write a block"},
782 {"readmulti",CmdHF15CmdReadmulti, 0, "Reads multiple Blocks"},
784 {"raw", CmdHF15CmdRaw
, 0, "Send raw hex data to tag"},
785 {"debug", CmdHF15CmdDebug
, 0, "Turn debugging on/off"},
786 {NULL
, NULL
, 0, NULL
}
789 int CmdHF15Cmd(const char *Cmd
)
791 CmdsParse(CommandTable15Cmd
, Cmd
);
795 int CmdHF15CmdHelp(const char *Cmd
)
797 CmdsHelp(CommandTable15Cmd
);