mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 15:00:46 +00:00
5d4ed946cb
CLI wrapper and idea by Willy-JL
31 lines
638 B
Text
31 lines
638 B
Text
App(
|
|
appid="lfrfid",
|
|
name="125 kHz RFID",
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
|
targets=["f7"],
|
|
entry_point="lfrfid_app",
|
|
icon="A_125khz_14",
|
|
stack_size=2 * 1024,
|
|
order=20,
|
|
fap_libs=["assets"],
|
|
fap_icon="icon.png",
|
|
fap_category="RFID",
|
|
)
|
|
|
|
App(
|
|
appid="lfrfid_cli",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="lfrfid_cli_plugin_ep",
|
|
requires=["cli"],
|
|
sources=["lfrfid_cli.c"],
|
|
)
|
|
|
|
App(
|
|
appid="lfrfid_start",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="lfrfid_on_system_start",
|
|
sources=["lfrfid_start.c"],
|
|
order=50,
|
|
)
|