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-07-10 11:03:41 +03:00
|
|
|
fap_libs=["assets"],
|
|
|
|
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"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="opal_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="opal_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="myki_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="myki_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="troika_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="troika_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="plantain_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="plantain_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
)
|
|
|
|
|
|
|
|
App(
|
|
|
|
appid="two_cities_parser",
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
entry_point="two_cities_plugin_ep",
|
|
|
|
targets=["f7"],
|
|
|
|
requires=["nfc"],
|
|
|
|
)
|
|
|
|
|
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",
|
|
|
|
order=30,
|
|
|
|
)
|