mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
21 lines
417 B
Plaintext
21 lines
417 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"],
|
|
provides=["input_settings"],
|
|
)
|
|
|
|
App(
|
|
appid="input_cli",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="input_cli_plugin_ep",
|
|
requires=["cli"],
|
|
sources=["input_cli.c"],
|
|
)
|