Skip to content

Commit

Permalink
Merge pull request RfidResearchGroup#2476 from CiRIP/electra_decode
Browse files Browse the repository at this point in the history
Actually fix ELECTRA parsing
  • Loading branch information
iceman1001 authored Aug 27, 2024
2 parents 30a2b50 + d3f0d7d commit 9406360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/cmdlfem410x.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ void printEM410x(uint32_t hi, uint64_t id, bool verbose, int type) {
uint32_t sebury3 = id & 0x7FFFFF;
PrintAndLogEx(SUCCESS, "Pattern Sebury : %d %d %d [0x%X 0x%X 0x%X]", sebury1, sebury2, sebury3, sebury1, sebury2, sebury3);
PrintAndLogEx(SUCCESS, "VD / ID : %03" PRIu64 " / %010" PRIu64, (id >> 32LL) & 0xFFFF, (id & 0xFFFFFFFF));
PrintAndLogEx(SUCCESS, "Pattern ELECTRA : " PRIu64 " " PRIu64, (id >> 24) & 0xFFFF, id & 0xFFFFFF);
PrintAndLogEx(SUCCESS, "Pattern ELECTRA : %" PRIu64 " %" PRIu64, (id >> 24) & 0xFFFF, id & 0xFFFFFF);

PrintAndLogEx(INFO, "------------------------------------------------");
}
Expand Down

0 comments on commit 9406360

Please sign in to comment.