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:
@@ -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");
|
||||||
|
|||||||
Reference in New Issue
Block a user