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 18:17:30 +03:00
|
|
|
resources="resources",
|
2023-11-01 07:21:31 +03:00
|
|
|
sources=[
|
2024-02-09 11:00:17 +03:00
|
|
|
"*.c*",
|
2023-11-01 07:21:31 +03:00
|
|
|
"!plugins",
|
|
|
|
"!nfc_cli.c",
|
|
|
|
],
|
2023-12-01 12:16:48 +03: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 06:08:09 +03: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 07:21:31 +03: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 06:08:09 +03:00
|
|
|
)
|
|
|
|
|
2024-02-09 11:16:14 +03: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 06:08:09 +03:00
|
|
|
App(
|
|
|
|
appid="opal_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="opal_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 07:21:31 +03: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 06:08:09 +03:00
|
|
|
)
|
|
|
|
|
2023-12-14 16:54:58 +03:00
|
|
|
App(
|
|
|
|
appid="mykey_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="mykey_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/mykey.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 06:08:09 +03:00
|
|
|
App(
|
|
|
|
appid="myki_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="myki_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 07:21:31 +03: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 06:08:09 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="troika_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="troika_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 07:21:31 +03: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 06:08:09 +03:00
|
|
|
)
|
|
|
|
|
2023-12-28 08:23:12 +03:00
|
|
|
App(
|
|
|
|
appid="washcity_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="washcity_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/washcity.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 06:08:09 +03:00
|
|
|
App(
|
|
|
|
appid="plantain_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="plantain_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 07:21:31 +03: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 06:08:09 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="two_cities_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="two_cities_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 07:21:31 +03: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 06:08:09 +03:00
|
|
|
)
|
|
|
|
|
2023-12-03 14:00:46 +03: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 12: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-14 17:02:40 +03:00
|
|
|
App(
|
|
|
|
appid="umarsh_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="umarsh_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/umarsh.c"],
|
|
|
|
)
|
|
|
|
|
2024-02-09 11:00:17 +03: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 20:47:44 +03: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-28 08:03:50 +03:00
|
|
|
App(
|
|
|
|
appid="hid_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="hid_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/hid.c"],
|
|
|
|
)
|
|
|
|
|
2024-02-06 21:55:38 +03:00
|
|
|
App(
|
|
|
|
appid="itso_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="itso_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/itso.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",
|
2023-11-01 07:21:31 +03:00
|
|
|
sources=["nfc_cli.c"],
|
2022-06-26 15:00:03 +03:00
|
|
|
order=30,
|
|
|
|
)
|