mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
5d4ed946cb
CLI wrapper and idea by Willy-JL
31 lines
645 B
Text
31 lines
645 B
Text
App(
|
|
appid="ibutton",
|
|
name="iButton",
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
|
targets=["f7"],
|
|
entry_point="ibutton_app",
|
|
icon="A_iButton_14",
|
|
stack_size=2 * 1024,
|
|
order=60,
|
|
fap_libs=["assets"],
|
|
fap_icon="icon.png",
|
|
fap_category="iButton",
|
|
)
|
|
|
|
App(
|
|
appid="ibutton_cli",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="ibutton_cli_plugin_ep",
|
|
requires=["cli"],
|
|
sources=["ibutton_cli.c"],
|
|
)
|
|
|
|
App(
|
|
appid="ibutton_start",
|
|
apptype=FlipperAppType.STARTUP,
|
|
targets=["f7"],
|
|
entry_point="ibutton_on_system_start",
|
|
sources=["ibutton_start.c"],
|
|
order=60,
|
|
)
|