Files
Momentum-Firmware/applications/services/crypto/application.fam
Willy-JL 197fef54e2 (Experimental) External CLI plugins -29kb DFU
Idea and plugin loader implementation by @akopachov, thanks!
All commands done except storage and rpc for latency reasons
2024-03-16 03:47:32 +00:00

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,
)