NFC: Implement Type 4 Tag reading

This commit is contained in:
Willy-JL
2025-03-05 08:10:03 +00:00
parent 0d99e54a17
commit 358631ec86
21 changed files with 1157 additions and 3 deletions

View File

@@ -22,7 +22,9 @@
* | | |
* ISO14443-4A Mf Ultralight Mf Classic
* |
* Mf Desfire
* +-----+------+----------+
* | | |
* Mf Desfire Type 4 Tag Mf Plus
* ```
*
* When implementing a new protocol, its place in the tree must be determined first.
@@ -62,6 +64,7 @@ static const NfcProtocol nfc_protocol_iso14443_3b_children_protocol[] = {
static const NfcProtocol nfc_protocol_iso14443_4a_children_protocol[] = {
NfcProtocolMfDesfire,
NfcProtocolMfPlus,
NfcProtocolType4Tag,
};
/** List of ISO115693-3 child protocols. */
@@ -153,6 +156,12 @@ static const NfcProtocolTreeNode nfc_protocol_nodes[NfcProtocolNum] = {
.children_num = 0,
.children_protocol = NULL,
},
[NfcProtocolType4Tag] =
{
.parent_protocol = NfcProtocolIso14443_4a,
.children_num = 0,
.children_protocol = NULL,
},
/* Add new protocols here */
};