Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSG <who.just.the.doctor@gmail.com>2021-09-20 21:39:52 +0300
committerGitHub <noreply@github.com>2021-09-20 21:39:52 +0300
commit9b0aa0d6dce38b0258409e1ba15133f01f6b2db5 (patch)
tree2bb9f91823b8dd7a427b74f9a9f09427484c517e /applications/applications.c
parent322bdf049d5e53cdb97be4a606ab00f393b5313d (diff)
Settings: about screen (#715)
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 9aa3795d..c662bdd9 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -51,6 +51,7 @@ extern void subghz_cli_init();
extern int32_t notification_settings_app(void* p);
extern int32_t storage_settings_app(void* p);
extern int32_t bt_settings_app(void* p);
+extern int32_t about_settings_app(void* p);
const FlipperApplication FLIPPER_SERVICES[] = {
/* Services */
@@ -268,6 +269,10 @@ const FlipperApplication FLIPPER_SETTINGS_APPS[] = {
#ifdef SRV_BT
{.app = bt_settings_app, .name = "Bluetooth", .stack_size = 1024, .icon = NULL},
#endif
+
+#ifdef APP_ABOUT
+ {.app = about_settings_app, .name = "About", .stack_size = 1024, .icon = NULL},
+#endif
};
const size_t FLIPPER_SETTINGS_APPS_COUNT =