From 5f9d68f3adacbadcd1fe315e30b7b97f6594b893 Mon Sep 17 00:00:00 2001 From: Zinong Li <131403964+zinongli@users.noreply.github.com> Date: Sat, 13 Jul 2024 16:05:54 -0400 Subject: [PATCH] NFC: ISO15693 Render Typo Fix (#3784) * Fixed the bug showing IC reference value as DSFID. --- .../nfc/helpers/protocol_support/iso15693_3/iso15693_3_render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/main/nfc/helpers/protocol_support/iso15693_3/iso15693_3_render.c b/applications/main/nfc/helpers/protocol_support/iso15693_3/iso15693_3_render.c index 07b96d701..ba8f10b93 100644 --- a/applications/main/nfc/helpers/protocol_support/iso15693_3/iso15693_3_render.c +++ b/applications/main/nfc/helpers/protocol_support/iso15693_3/iso15693_3_render.c @@ -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) {