2022-06-26 12:00:03 +00:00
|
|
|
App(
|
|
|
|
appid="nfc",
|
|
|
|
name="NFC",
|
2023-07-10 08:03:41 +00:00
|
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
2023-02-07 16:33:05 +00:00
|
|
|
targets=["f7"],
|
2022-06-26 12:00:03 +00:00
|
|
|
entry_point="nfc_app",
|
|
|
|
icon="A_NFC_14",
|
2022-08-07 15:09:00 +00:00
|
|
|
stack_size=5 * 1024,
|
2022-06-26 12:00:03 +00:00
|
|
|
order=30,
|
2023-10-30 15:17:30 +00:00
|
|
|
resources="resources",
|
2023-11-01 04:21:31 +00:00
|
|
|
sources=[
|
|
|
|
"*.c",
|
|
|
|
"!plugins",
|
|
|
|
"!nfc_cli.c",
|
|
|
|
],
|
2023-12-01 09:16:48 +00:00
|
|
|
fap_libs=["assets", "mbedtls"],
|
2023-07-10 08:03:41 +00:00
|
|
|
fap_icon="icon.png",
|
|
|
|
fap_category="NFC",
|
2022-06-26 12:00:03 +00: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 03:08:09 +00: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 04:21:31 +00: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 03:08:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="opal_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="opal_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 04:21:31 +00: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 03:08:09 +00:00
|
|
|
)
|
|
|
|
|
2023-12-14 13:54:58 +00: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 03:08:09 +00:00
|
|
|
App(
|
|
|
|
appid="myki_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="myki_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 04:21:31 +00: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 03:08:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="troika_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="troika_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 04:21:31 +00: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 03:08:09 +00:00
|
|
|
)
|
|
|
|
|
2023-12-28 05:23:12 +00: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 03:08:09 +00:00
|
|
|
App(
|
|
|
|
appid="plantain_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="plantain_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 04:21:31 +00: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 03:08:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="two_cities_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="two_cities_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
2023-11-01 04:21:31 +00: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 03:08:09 +00:00
|
|
|
)
|
|
|
|
|
2023-12-03 11:00:46 +00:00
|
|
|
App(
|
|
|
|
appid="aime_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="aime_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/aime.c"],
|
|
|
|
)
|
|
|
|
|
2023-12-14 14:02:40 +00: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-06 17:47:44 +00: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 05:03:50 +00:00
|
|
|
App(
|
|
|
|
appid="hid_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="hid_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
sources=["plugins/supported_cards/hid.c"],
|
|
|
|
)
|
|
|
|
|
2022-06-26 12:00:03 +00:00
|
|
|
App(
|
|
|
|
appid="nfc_start",
|
2023-07-10 08:03:41 +00:00
|
|
|
targets=["f7"],
|
2022-06-26 12:00:03 +00:00
|
|
|
apptype=FlipperAppType.STARTUP,
|
|
|
|
entry_point="nfc_on_system_start",
|
2023-11-01 04:21:31 +00:00
|
|
|
sources=["nfc_cli.c"],
|
2022-06-26 12:00:03 +00:00
|
|
|
order=30,
|
|
|
|
)
|