back to parser

This commit is contained in:
Methodius
2024-01-29 23:12:17 +09:00
parent 1165e25f00
commit 3612814a18
6 changed files with 155 additions and 11 deletions

View File

@@ -173,6 +173,15 @@ App(
sources=["plugins/supported_cards/washcity.c"],
)
App(
appid="emv_parser",
apptype=FlipperAppType.PLUGIN,
entry_point="emv_plugin_ep",
targets=["f7"],
requires=["nfc"],
sources=["plugins/supported_cards/emv.c"],
)
App(
appid="ndef_parser",
apptype=FlipperAppType.PLUGIN,
@@ -182,7 +191,6 @@ App(
sources=["plugins/supported_cards/ndef.c"],
)
App(
appid="nfc_start",
targets=["f7"],