move last apps into microsd

This commit is contained in:
MX 2023-07-10 17:21:49 +03:00
parent dab2e6e39c
commit 5398fb806e
No known key found for this signature in database
GPG Key ID: 7CCC66B7DBDD1C83
5 changed files with 10 additions and 14 deletions

View File

@ -1,12 +1,11 @@
App(
appid="clock",
name="Clock",
apptype=FlipperAppType.APP,
apptype=FlipperAppType.MENUEXTERNAL,
entry_point="clock_app",
cdefines=["APP_CLOCK"],
requires=["gui"],
icon="A_Clock_14",
stack_size=2 * 1024,
order=81,
fap_icon="icon.png",
fap_category="Tools",
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -1,17 +1,11 @@
App(
appid="subghz_remote",
name="Sub-GHz Remote",
apptype=FlipperAppType.APP,
apptype=FlipperAppType.MENUEXTERNAL,
entry_point="subghz_remote_app",
cdefines=[
"APP_SUBGHZREMOTE",
"SUBREM_LIGHT",
],
requires=[
"gui",
"dialogs",
],
icon="A_SubGHzRemote_14",
stack_size=2 * 1024,
order=11,
)
fap_icon="icon.png",
fap_category="Sub-Ghz",
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1,5 +1,8 @@
#pragma once
#define SUBREM_LIGHT 1
#define APP_SUBGHZREMOTE 1
#include "helpers/subrem_types.h"
#include "helpers/subrem_presets.h"
#include "scenes/subrem_scene.h"