mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07: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 2: snprintf(exp, size,"4 slots ");break;
|
||||||
case 3: snprintf(exp, size,"8 slots ");break;
|
case 3: snprintf(exp, size,"8 slots ");break;
|
||||||
default: snprintf(exp, size,"16 slots ");break;
|
default: snprintf(exp, size,"16 slots ");break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( (cmd[2] & 0x8) )
|
if ( (cmd[2] & 0x8) )
|
||||||
snprintf(exp, size,"REQB");
|
|
||||||
else
|
|
||||||
snprintf(exp, size,"WUPB");
|
snprintf(exp, size,"WUPB");
|
||||||
|
else
|
||||||
|
snprintf(exp, size,"REQB");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ISO14443B_ATTRIB : snprintf(exp,size,"ATTRIB");break;
|
case ISO14443B_ATTRIB : snprintf(exp,size,"ATTRIB");break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue