Files
Momentum-Firmware/applications/services/input/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

20 lines
384 B
Plaintext

App(
appid="input",
name="InputSrv",
apptype=FlipperAppType.SERVICE,
entry_point="input_srv",
cdefines=["SRV_INPUT"],
stack_size=1 * 1024,
order=80,
sdk_headers=["input.h"],
)
App(
appid="input_cli",
targets=["f7"],
apptype=FlipperAppType.PLUGIN,
entry_point="input_cli_plugin_ep",
requires=["cli"],
sources=["input_cli.c"],
)