1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 04:41:26 +04:00

NFC: ISO15693 Render Typo Fix (#3784)

* Fixed the bug showing IC reference value as DSFID.
This commit is contained in:
Zinong Li
2024-07-13 16:05:54 -04:00
committed by GitHub
parent fcf60e35a3
commit 5f9d68f3ad

View File

@@ -71,7 +71,7 @@ void nfc_render_iso15693_3_system_info(const Iso15693_3Data* data, FuriString* s
void nfc_render_iso15693_3_extra(const Iso15693_3Data* data, FuriString* str) {
furi_string_cat(str, "\n::::::::::::::::[General info]:::::::::::::::::\n");
if(data->system_info.flags & ISO15693_3_SYSINFO_FLAG_DSFID) {
furi_string_cat_printf(str, "DSFID: %02X\n", data->system_info.ic_ref);
furi_string_cat_printf(str, "DSFID: %02X\n", data->system_info.dsfid);
}
if(data->system_info.flags & ISO15693_3_SYSINFO_FLAG_AFI) {