2022-06-26 15:00:03 +03:00
|
|
|
App(
|
|
|
|
appid="nfc",
|
|
|
|
name="NFC",
|
2023-07-10 11:03:41 +03:00
|
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
2023-02-07 19:33:05 +03:00
|
|
|
targets=["f7"],
|
2022-06-26 15:00:03 +03:00
|
|
|
entry_point="nfc_app",
|
|
|
|
icon="A_NFC_14",
|
2022-08-07 18:09:00 +03:00
|
|
|
stack_size=5 * 1024,
|
2022-06-26 15:00:03 +03:00
|
|
|
order=30,
|
2023-10-30 19:17:30 +04:00
|
|
|
resources="resources",
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=[
|
2024-02-09 21:00:17 +13:00
|
|
|
"*.c*",
|
2023-11-01 08:21:31 +04:00
|
|
|
"!plugins",
|
|
|
|
"!nfc_cli.c",
|
|
|
|
],
|
2023-12-01 13:16:48 +04:00
|
|
|
fap_libs=["assets", "mbedtls"],
|
2023-07-10 11:03:41 +03:00
|
|
|
fap_icon="icon.png",
|
|
|
|
fap_category="NFC",
|
2022-06-26 15:00:03 +03:00
|
|
|
)
|
|
|
|
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
# Parser plugins
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="all_in_one_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="all_in_one_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=["plugins/supported_cards/all_in_one.c"],
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
)
|
|
|
|
|
2024-02-09 09:16:14 +01:00
|
|
|
App(
|
|
|
|
appid="microel_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="microel_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/microel.c"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="mizip_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="mizip_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/mizip.c"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="hi_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="hi_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/hi.c"],
|
|
|
|
)
|
|
|
|
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
App(
|
|
|
|
appid="opal_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="opal_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=["plugins/supported_cards/opal.c"],
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="myki_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="myki_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=["plugins/supported_cards/myki.c"],
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="troika_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="troika_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=["plugins/supported_cards/troika.c"],
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
)
|
|
|
|
|
2023-11-20 19:11:30 +03:00
|
|
|
App(
|
|
|
|
appid="social_moscow_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="social_moscow_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/social_moscow.c"],
|
|
|
|
)
|
|
|
|
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
App(
|
|
|
|
appid="plantain_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="plantain_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=["plugins/supported_cards/plantain.c"],
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="two_cities_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="two_cities_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 08:21:31 +04:00
|
|
|
sources=["plugins/supported_cards/two_cities.c"],
|
NFC refactoring (#3050)
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring.
Starring:
- @gornekich - NFC refactoring project lead, architect, senior developer
- @gsurkov - architect, senior developer
- @RebornedBrain - senior developer
Supporting roles:
- @skotopes, @DrZlo13, @hedger - general architecture advisors, code review
- @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance
Special thanks:
@bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
2023-10-24 07:08:09 +04:00
|
|
|
)
|
|
|
|
|
2023-11-21 12:21:22 +09:00
|
|
|
App(
|
|
|
|
appid="umarsh_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="umarsh_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/umarsh.c"],
|
|
|
|
)
|
|
|
|
|
2023-11-22 00:39:23 +09:00
|
|
|
App(
|
|
|
|
appid="metromoney_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="metromoney_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/metromoney.c"],
|
|
|
|
)
|
|
|
|
|
2024-04-05 01:25:03 +03:00
|
|
|
App(
|
|
|
|
appid="charliecard_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="charliecard_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/charliecard.c"],
|
|
|
|
)
|
|
|
|
|
2023-11-23 22:19:26 +09:00
|
|
|
App(
|
|
|
|
appid="kazan_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="kazan_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/kazan.c"],
|
|
|
|
)
|
|
|
|
|
2023-12-03 20:00:46 +09:00
|
|
|
App(
|
|
|
|
appid="aime_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="aime_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/aime.c"],
|
|
|
|
)
|
|
|
|
|
2024-03-04 06:50:28 -03:00
|
|
|
App(
|
|
|
|
appid="bip_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="bip_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/bip.c"],
|
|
|
|
)
|
|
|
|
|
2023-12-04 16:03:32 -05:00
|
|
|
App(
|
|
|
|
appid="saflok_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="saflok_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/saflok.c"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="mykey_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="mykey_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/mykey.c"],
|
|
|
|
)
|
|
|
|
|
2023-12-17 04:58:07 +09:00
|
|
|
App(
|
|
|
|
appid="zolotaya_korona_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="zolotaya_korona_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/zolotaya_korona.c"],
|
|
|
|
)
|
|
|
|
|
2024-01-13 16:52:50 +09:00
|
|
|
App(
|
|
|
|
appid="zolotaya_korona_online_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="zolotaya_korona_online_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/zolotaya_korona_online.c"],
|
|
|
|
)
|
|
|
|
|
2024-02-09 21:00:17 +13:00
|
|
|
App(
|
|
|
|
appid="gallagher_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="gallagher_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/gallagher.c"],
|
|
|
|
)
|
|
|
|
|
2024-02-06 09:47:44 -08:00
|
|
|
App(
|
|
|
|
appid="clipper_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="clipper_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/clipper.c"],
|
|
|
|
)
|
|
|
|
|
2023-12-27 21:03:50 -08:00
|
|
|
App(
|
|
|
|
appid="hid_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="hid_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/hid.c"],
|
|
|
|
)
|
|
|
|
|
2024-01-06 03:18:32 +09:00
|
|
|
App(
|
|
|
|
appid="washcity_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="washcity_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/washcity.c"],
|
|
|
|
)
|
|
|
|
|
2024-01-29 23:12:17 +09:00
|
|
|
App(
|
|
|
|
appid="emv_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="emv_plugin_ep",
|
|
|
|
targets=["f7"],
|
2024-03-24 00:17:02 +03:00
|
|
|
requires=["nfc"],
|
2024-01-30 00:29:06 +09:00
|
|
|
sources=["plugins/supported_cards/emv.c", "helpers/nfc_emv_parser.c"],
|
2024-01-29 23:12:17 +09:00
|
|
|
)
|
|
|
|
|
2024-01-11 21:30:17 +03:00
|
|
|
App(
|
|
|
|
appid="ndef_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="ndef_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/ndef.c"],
|
|
|
|
)
|
|
|
|
|
2024-02-07 00:25:38 +05:30
|
|
|
App(
|
|
|
|
appid="itso_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="itso_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/itso.c"],
|
|
|
|
)
|
|
|
|
|
2024-05-15 11:09:08 -07:00
|
|
|
App(
|
|
|
|
appid="skylanders_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="skylanders_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/skylanders.c"],
|
|
|
|
)
|
|
|
|
|
2024-06-15 15:12:50 +03:00
|
|
|
App(
|
|
|
|
appid="nfc_cli",
|
|
|
|
targets=["f7"],
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="nfc_cli_plugin_ep",
|
|
|
|
requires=["cli"],
|
|
|
|
sources=["nfc_cli.c"],
|
|
|
|
)
|
|
|
|
|
2022-06-26 15:00:03 +03:00
|
|
|
App(
|
|
|
|
appid="nfc_start",
|
2023-07-10 11:03:41 +03:00
|
|
|
targets=["f7"],
|
2022-06-26 15:00:03 +03:00
|
|
|
apptype=FlipperAppType.STARTUP,
|
|
|
|
entry_point="nfc_on_system_start",
|
2024-06-15 15:12:50 +03:00
|
|
|
sources=["nfc_start.c"],
|
2022-06-26 15:00:03 +03:00
|
|
|
order=30,
|
|
|
|
)
|