NFC: Implement Type 4 Tag NDEF parsing

This commit is contained in:
Willy-JL
2025-03-06 02:54:40 +00:00
parent 0beee0c6a7
commit e3f7e1c2d3
2 changed files with 60 additions and 1 deletions

View File

@@ -247,6 +247,16 @@ App(
sources=["plugins/supported_cards/ndef.c"],
)
App(
appid="ndef_t4t_parser",
apptype=FlipperAppType.PLUGIN,
cdefines=[("NDEF_PROTO", "NDEF_PROTO_T4T")],
entry_point="ndef_plugin_ep",
targets=["f7"],
requires=["nfc"],
sources=["plugins/supported_cards/ndef.c"],
)
App(
appid="disney_infinity_parser",
apptype=FlipperAppType.PLUGIN,