mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 00:28:07 +08:00
FIX: Mental note to self, bitnumber 4 is used, not the value 4 which would be bitnumber 3... when deciding if request is REQB or WUPB
This commit is contained in:
parent
0923c43cc6
commit
a644fef0bb
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ void annotateIso14443b(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
|
||||||
default: snprintf(exp, size,"16 slots ");break;
|
default: snprintf(exp, size,"16 slots ");break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( (cmd[2] & 0x4) )
|
if ( (cmd[2] & 0x8) )
|
||||||
snprintf(exp, size,"REQB");
|
snprintf(exp, size,"REQB");
|
||||||
else
|
else
|
||||||
snprintf(exp, size,"WUPB");
|
snprintf(exp, size,"WUPB");
|
||||||
|
|
Loading…
Reference in a new issue