mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-28 03:59:58 -07:00
* Unused icons to check later * Exclude disabled icons from firmware * Format * CLI: Test moving more cmds to plugins * CLI: Macro template for plugin wrapper * Fix plugin filenames * Retrofit older cli wrappers * Fix unused * Fix manifests * Add explanation * Revert "Unused icons to check later" This reverts commitb7f98e344c. * Revert "Exclude disabled icons from firmware" This reverts commitab62e99898. * Add back toplevel chat command * Add DFU size to github comment * Fix build * Fix BT CLI preload fail * Add these back * Fix CLI command gpio preload fail * Fix input command * These can stay * Fix negative size rounding * Update changelog * Fix DFU size calc
31 lines
618 B
Plaintext
31 lines
618 B
Plaintext
App(
|
|
appid="ibutton",
|
|
name="iButton",
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
|
targets=["f7"],
|
|
entry_point="ibutton_app",
|
|
icon="A_iButton_14",
|
|
stack_size=2 * 1024,
|
|
order=60,
|
|
fap_icon="icon.png",
|
|
fap_category="iButton",
|
|
)
|
|
|
|
App(
|
|
appid="ibutton_cli",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.PLUGIN,
|
|
entry_point="ibutton_cli_plugin_ep",
|
|
requires=["cli"],
|
|
sources=["ibutton_cli.c"],
|
|
)
|
|
|
|
App(
|
|
appid="ibutton_start",
|
|
apptype=FlipperAppType.STARTUP,
|
|
targets=["f7"],
|
|
entry_point="ibutton_on_system_start",
|
|
sources=["ibutton_cli.c"],
|
|
order=60,
|
|
)
|