mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
add ELECTRA pattern to EM410x print output
This commit is contained in:
parent
da1c79503e
commit
54d1807475
1 changed files with 1 additions and 0 deletions
|
@ -231,6 +231,7 @@ void printEM410x(uint32_t hi, uint64_t id, bool verbose, int type) {
|
||||||
uint32_t sebury3 = id & 0x7FFFFF;
|
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, "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, "VD / ID : %03" PRIu64 " / %010" PRIu64, (id >> 32LL) & 0xFFFF, (id & 0xFFFFFFFF));
|
||||||
|
PrintAndLogEx(SUCCESS, "Pattern ELECTRA : %d %d", (id >> 24) & 0xFFFF, id & 0xFFFFFF);
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "------------------------------------------------");
|
PrintAndLogEx(INFO, "------------------------------------------------");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue