mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
@iceman1001 s idea to output failure report
This commit is contained in:
parent
6980d66b05
commit
61500621bc
1 changed files with 6 additions and 1 deletions
|
@ -719,7 +719,12 @@ int CmdEM4x05ReadWord(const char *Cmd) {
|
|||
usePwd = true;
|
||||
PrintAndLog("Reading address %02u | password %08X", addr, pwd);
|
||||
}
|
||||
return EM4x05ReadWord(addr, pwd, usePwd);
|
||||
|
||||
int result = EM4x05ReadWord(addr, pwd, usePwd);
|
||||
if (result == -1)
|
||||
PrintAndLog("Read failed");
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
int usage_lf_em_dump(void) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue