mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 22:03:19 -07:00
Fixed RB1 mask in block 1 check
This commit is contained in:
parent
96004396f0
commit
8e7de677a5
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ bool IsBlock0PCF7931(uint8_t *block) {
|
||||||
bool IsBlock1PCF7931(uint8_t *block) {
|
bool IsBlock1PCF7931(uint8_t *block) {
|
||||||
// assuming all RFU bits are set to 0
|
// assuming all RFU bits are set to 0
|
||||||
|
|
||||||
uint8_t rb1 = block[14] & 0x01;
|
uint8_t rb1 = block[14] & 0x80;
|
||||||
uint8_t rfb = block[14] & 0x7f;
|
uint8_t rfb = block[14] & 0x7f;
|
||||||
uint8_t rlb = block[15];
|
uint8_t rlb = block[15];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue