mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08:00
wiegand: missing ;
This commit is contained in:
parent
9d1aa3fb96
commit
ca68ac108b
1 changed files with 2 additions and 2 deletions
|
@ -228,8 +228,8 @@ void num_to_wiegand_bits(uint64_t oem, uint64_t fc, uint64_t cn, uint8_t *dest,
|
||||||
break;
|
break;
|
||||||
case 50 : // AWID 50 RBH
|
case 50 : // AWID 50 RBH
|
||||||
fc &= 0xFFFF; // 16bits
|
fc &= 0xFFFF; // 16bits
|
||||||
cn &= 0xFFFFFFFF // 32bits
|
cn &= 0xFFFFFFFF; // 32bits
|
||||||
value = fc << 32 | cn;
|
value = fc << 32 | cn;
|
||||||
num_to_bytebits(value, 48, temp);
|
num_to_bytebits(value, 48, temp);
|
||||||
wiegand_add_parity(temp, dest, 48); // verify!
|
wiegand_add_parity(temp, dest, 48); // verify!
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue