1
0
mirror of https://github.com/whowechina/aic_pico.git synced 2025-02-20 20:41:17 +01:00

Fix card id display issue

This commit is contained in:
whowechina 2024-01-21 12:31:36 +08:00
parent 507840a329
commit 042738861e
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -146,7 +146,7 @@ void detect_card()
const char *card_type_str[3] = { "MIFARE", "FeliCa", "15693" };
printf("\n%s:", card_type_str[card.card_type - 1]);
for (int i = 0; i < card.len; i++) {
printf(" %02x", hid_cardio.current[i]);
printf(" %02x", hid_cardio.current[i + 1]);
}
}