more params

This commit is contained in:
iceman1001 2020-08-14 14:57:02 +02:00
parent 07af67c6e0
commit ede0059b10
2 changed files with 2 additions and 2 deletions

View file

@ -123,7 +123,7 @@ int CmdHFSearch(const char *Cmd) {
PROMPT_CLEARLINE;
PrintAndLogEx(INPLACE, " Searching for ISO15693 tag...");
if (IfPm3Iso15693()) {
if (readHF15Uid(false)) {
if (readHF15Uid(false, false)) {
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("ISO15693 tag") " found\n");
res = PM3_SUCCESS;
}

View file

@ -15,6 +15,6 @@
int CmdHF15(const char *Cmd);
bool readHF15Uid(bool verbose);
bool readHF15Uid(bool loop, bool verbose);
#endif