mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
Forgot some breaks, and a faulty comparision of a set bit.
This commit is contained in:
parent
186ad6037c
commit
b9e66427b7
1 changed files with 6 additions and 6 deletions
|
@ -270,14 +270,14 @@ void annotateIso14443b(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
|
||||||
case ISO14443B_REQB : {
|
case ISO14443B_REQB : {
|
||||||
|
|
||||||
switch ( cmd[2] & 0x07 ) {
|
switch ( cmd[2] & 0x07 ) {
|
||||||
case 0: snprintf(exp, size,"1 slot ");
|
case 0: snprintf(exp, size,"1 slot ");break;
|
||||||
case 1: snprintf(exp, size,"2 slots ");
|
case 1: snprintf(exp, size,"2 slots ");break;
|
||||||
case 2: snprintf(exp, size,"4 slots ");
|
case 2: snprintf(exp, size,"4 slots ");break;
|
||||||
case 3: snprintf(exp, size,"8 slots ");
|
case 3: snprintf(exp, size,"8 slots ");break;
|
||||||
default: snprintf(exp, size,"16 slots ");
|
default: snprintf(exp, size,"16 slots ");break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( (cmd[2] & 0x4) == 1 )
|
if ( (cmd[2] & 0x4) )
|
||||||
snprintf(exp, size,"REQB");
|
snprintf(exp, size,"REQB");
|
||||||
else
|
else
|
||||||
snprintf(exp, size,"WUPB");
|
snprintf(exp, size,"WUPB");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue