1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00

Nfc: HID MFC Plugin (#3312)

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Eric Betts
2023-12-27 21:03:50 -08:00
committed by GitHub
parent c9e3f20314
commit 76ed466eb4
2 changed files with 162 additions and 0 deletions

View File

@@ -101,6 +101,15 @@ App(
sources=["plugins/supported_cards/umarsh.c"],
)
App(
appid="hid_parser",
apptype=FlipperAppType.PLUGIN,
entry_point="hid_plugin_ep",
targets=["f7"],
requires=["nfc"],
sources=["plugins/supported_cards/hid.c"],
)
App(
appid="nfc_start",
targets=["f7"],