mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
Idea and plugin loader implementation by @akopachov, thanks! All commands done except storage and rpc for latency reasons
20 lines
384 B
Plaintext
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"],
|
|
)
|