mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-02 04:39:59 -07:00
Idea and plugin loader implementation by @akopachov, thanks! All commands done except storage and rpc for latency reasons
17 lines
336 B
Plaintext
17 lines
336 B
Plaintext
App(
|
|
appid="crypto_cli",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="crypto_cli_plugin_ep",
|
|
requires=["cli"],
|
|
sources=["crypto_cli.c"],
|
|
)
|
|
|
|
App(
|
|
appid="crypto_start",
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="crypto_on_system_start",
|
|
sources=["crypto_start.c"],
|
|
order=10,
|
|
)
|