Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ static void nfc_render_mf_ultralight_pages_count(const MfUltralightData* data, F
}
}

static void nfc_render_mf_ultralight_counters(const MfUltralightData* data, FuriString* str) {
for(uint8_t i = 0; i < MF_ULTRALIGHT_COUNTER_NUM; i++)
furi_string_cat_printf(str, "\nCounter %u: %lu", i, data->counter[i].counter);
}

void nfc_render_mf_ultralight_pwd_pack(const MfUltralightData* data, FuriString* str) {
MfUltralightConfigPages* config;

Expand Down Expand Up @@ -44,6 +49,8 @@ void nfc_render_mf_ultralight_info(
nfc_render_iso14443_3a_info(data->iso14443_3a_data, format_type, str);

nfc_render_mf_ultralight_pages_count(data, str);

nfc_render_mf_ultralight_counters(data, str);
}

void nfc_render_mf_ultralight_dump(const MfUltralightData* data, FuriString* str) {
Expand Down