Merge branch 'dev' into cc1101_ext

This commit is contained in:
MX
2023-07-10 17:23:30 +03:00
8 changed files with 20 additions and 41 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"