mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07:00
fix bug in viking clone/sim
from @iceman1001
This commit is contained in:
parent
de53156e1e
commit
8f2268397d
1 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ int usage_lf_viking_sim(void) {
|
||||||
|
|
||||||
uint64_t getVikingBits(uint32_t id) {
|
uint64_t getVikingBits(uint32_t id) {
|
||||||
//calc checksum
|
//calc checksum
|
||||||
uint8_t checksum = (id>>24) ^ ((id>>16) & 0xFF) ^ ((id>>8) & 0xFF) ^ (id & 0xFF) ^ 0xF2 ^ 0xA8;
|
uint8_t checksum = ((id>>24) & 0xFF) ^ ((id>>16) & 0xFF) ^ ((id>>8) & 0xFF) ^ (id & 0xFF) ^ 0xF2 ^ 0xA8;
|
||||||
return ((uint64_t)0xF2 << 56) | (id << 8) | checksum;
|
return ((uint64_t)0xF2 << 56) | ((uint64_t)id << 8) | checksum;
|
||||||
}
|
}
|
||||||
//by marshmellow
|
//by marshmellow
|
||||||
//see ASKDemod for what args are accepted
|
//see ASKDemod for what args are accepted
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue