mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
35e74c07d1
* Added NFC plugin; parser for WashCity cards. * Fixed file to the correct path * Added demo file Demo_WC_20E.nfc * Fixed clang format * fixed typo (balance_cents) * Removed demo file as requested. Co-authored-by: あく <alleteam@gmail.com>
129 lines
2.7 KiB
Text
129 lines
2.7 KiB
Text
App(
|
|
appid="nfc",
|
|
name="NFC",
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
|
targets=["f7"],
|
|
entry_point="nfc_app",
|
|
icon="A_NFC_14",
|
|
stack_size=5 * 1024,
|
|
order=30,
|
|
resources="resources",
|
|
sources=[
|
|
"*.c",
|
|
"!plugins",
|
|
"!nfc_cli.c",
|
|
],
|
|
fap_libs=["assets", "mbedtls"],
|
|
fap_icon="icon.png",
|
|
fap_category="NFC",
|
|
)
|
|
|
|
# Parser plugins
|
|
|
|
App(
|
|
appid="all_in_one_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="all_in_one_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/all_in_one.c"],
|
|
)
|
|
|
|
App(
|
|
appid="opal_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="opal_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/opal.c"],
|
|
)
|
|
|
|
App(
|
|
appid="mykey_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="mykey_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/mykey.c"],
|
|
)
|
|
|
|
App(
|
|
appid="myki_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="myki_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/myki.c"],
|
|
)
|
|
|
|
App(
|
|
appid="troika_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="troika_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/troika.c"],
|
|
)
|
|
|
|
App(
|
|
appid="washcity_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="washcity_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/washcity.c"],
|
|
)
|
|
|
|
App(
|
|
appid="plantain_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="plantain_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/plantain.c"],
|
|
)
|
|
|
|
App(
|
|
appid="two_cities_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="two_cities_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/two_cities.c"],
|
|
)
|
|
|
|
App(
|
|
appid="aime_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="aime_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
sources=["plugins/supported_cards/aime.c"],
|
|
)
|
|
|
|
App(
|
|
appid="umarsh_parser",
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="umarsh_plugin_ep",
|
|
targets=["f7"],
|
|
requires=["nfc"],
|
|
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"],
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="nfc_on_system_start",
|
|
sources=["nfc_cli.c"],
|
|
order=30,
|
|
)
|