diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c08aaadc..a1090e226 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log... ## [unreleased][unreleased] +- Added ELECTRA pattern decoding in `lf search` (@CiRIP) - Firmware size optimization, skipping unused FPGA bitstreams (@douniwan5788) - Added pretty Hitag S config parsing (@CiRIP) - Moved Hitag S operations into separate submenu: `lf hitag s` (@CiRIP) diff --git a/client/src/cmdlfem410x.c b/client/src/cmdlfem410x.c index 0182083c5..35bf408fe 100644 --- a/client/src/cmdlfem410x.c +++ b/client/src/cmdlfem410x.c @@ -231,6 +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(INFO, "------------------------------------------------"); }