mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
Idea and plugin loader implementation by @akopachov, thanks! All commands done except storage and rpc for latency reasons
17 lines
342 B
Plaintext
17 lines
342 B
Plaintext
App(
|
|
appid="onewire_cli",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="onewire_cli_plugin_ep",
|
|
requires=["cli"],
|
|
sources=["onewire_cli.c"],
|
|
)
|
|
|
|
App(
|
|
appid="onewire_start",
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="onewire_on_system_start",
|
|
sources=["onewire_start.c"],
|
|
order=60,
|
|
)
|