This commit is contained in:
iceman1001 2020-08-17 14:05:15 +02:00
parent b941e6aab9
commit 179ef4cf84

View file

@ -245,9 +245,11 @@ static int usage_15_reader(void) {
"Usage: hf 15 reader [h]\n" "Usage: hf 15 reader [h]\n"
"Options:\n" "Options:\n"
"\th this help\n" "\th this help\n"
"\t1 read once\n"
"\n" "\n"
"Example:\n" "Example:\n"
_YELLOW_("\thf 15 reader")); _YELLOW_("\thf 15 reader\n")
_YELLOW_("\thf 15 reader 1\n"));
return PM3_SUCCESS; return PM3_SUCCESS;
} }
static int usage_15_sim(void) { static int usage_15_sim(void) {
@ -920,7 +922,7 @@ static int CmdHF15Info(const char *Cmd) {
int status = resp.oldarg[0]; int status = resp.oldarg[0];
if (status < 2) { if (status < 2) {
PrintAndLogEx(WARNING, "iso15693 card doesn't answer to systeminfo command"); PrintAndLogEx(WARNING, "iso15693 card doesn't answer to systeminfo command (%d)", status);
return PM3_EWRONGANSWER; return PM3_EWRONGANSWER;
} }