Merge remote-tracking branch 'ofw/dev' into mntm-dev

This commit is contained in:
Willy-JL
2025-04-04 07:37:27 +01:00
52 changed files with 1170 additions and 606 deletions

View File

@@ -9,7 +9,6 @@ App(
"dialogs",
],
provides=[
"bt_start",
"bt_settings",
],
stack_size=1 * 1024,
@@ -18,17 +17,10 @@ App(
)
App(
appid="bt_cli",
appid="cli_bt",
targets=["f7"],
apptype=FlipperAppType.PLUGIN,
entry_point="bt_cli_plugin_ep",
entry_point="cli_bt_ep",
requires=["cli"],
sources=["bt_cli.c", "bt_service/bt_settings_api.c"],
)
App(
appid="bt_start",
apptype=FlipperAppType.STARTUP,
entry_point="bt_on_system_start",
order=70,
)