mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
FIX: mental note to self, don't forget to adjust messages to new logic
This commit is contained in:
parent
a644fef0bb
commit
7bcddfabde
1 changed files with 3 additions and 4 deletions
|
@ -275,12 +275,11 @@ void annotateIso14443b(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
|
|||
case 2: snprintf(exp, size,"4 slots ");break;
|
||||
case 3: snprintf(exp, size,"8 slots ");break;
|
||||
default: snprintf(exp, size,"16 slots ");break;
|
||||
}
|
||||
|
||||
}
|
||||
if ( (cmd[2] & 0x8) )
|
||||
snprintf(exp, size,"REQB");
|
||||
else
|
||||
snprintf(exp, size,"WUPB");
|
||||
else
|
||||
snprintf(exp, size,"REQB");
|
||||
break;
|
||||
}
|
||||
case ISO14443B_ATTRIB : snprintf(exp,size,"ATTRIB");break;
|
||||
|
|
Loading…
Reference in a new issue