mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
added missing value
This commit is contained in:
parent
1a19640d18
commit
97e61650ab
1 changed files with 4 additions and 2 deletions
|
@ -754,7 +754,9 @@ int CmdHF14ASim(const char *Cmd) {
|
||||||
"hf 14a sim -t 7 -> MFU EV1 / NTAG 215 Amiibo\n"
|
"hf 14a sim -t 7 -> MFU EV1 / NTAG 215 Amiibo\n"
|
||||||
"hf 14a sim -t 8 -> MIFARE Classic 4k\n"
|
"hf 14a sim -t 8 -> MIFARE Classic 4k\n"
|
||||||
"hf 14a sim -t 9 -> FM11RF005SH Shanghai Metro\n"
|
"hf 14a sim -t 9 -> FM11RF005SH Shanghai Metro\n"
|
||||||
"hf 14a sim -t 10 -> ST25TA IKEA Rothult\n");
|
"hf 14a sim -t 10 -> ST25TA IKEA Rothult\n"
|
||||||
|
"hf 14a sim -t 11 -> javacard (JCOP)\n"
|
||||||
|
);
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
|
@ -808,7 +810,7 @@ int CmdHF14ASim(const char *Cmd) {
|
||||||
|
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
if (tagtype > 10) {
|
if (tagtype > 11) {
|
||||||
PrintAndLogEx(ERR, "Undefined tag %d", tagtype);
|
PrintAndLogEx(ERR, "Undefined tag %d", tagtype);
|
||||||
return PM3_EINVARG;
|
return PM3_EINVARG;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue