Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated display info to DEZ 8 (actual one) #777

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- EMV Transactions less nested, hide if unavailable (by @Willy-JL | PR #771)
- LF RFID:
- Update T5577 password list (by @korden32 | PR #774)
- Add DEZ 10 display form for EM4100 (by @korden32 | PR #776)
- Add DEZ 8 display form for EM4100 (by @korden32 | PR #776 & #777)
* JS: Refactor widget and keyboard modules, fix crash (by @Willy-JL | PR #770)
* OFW: Event Loop Timers
* OFW: Updater: resource compression
Expand Down
2 changes: 1 addition & 1 deletion lib/lfrfid/protocols/protocol_em4100.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ void protocol_em4100_render_data(ProtocolEM4100* protocol, FuriString* result) {
furi_string_printf(
result,
"FC: %03u Card: %05hu CL:%hhu\n"
"DEZ 10: %010lu",
"DEZ 8: %08lu",
data[2],
(uint16_t)((data[3] << 8) | (data[4])),
protocol->clock_per_bit,
Expand Down