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:
authorあく <alleteam@gmail.com>2021-07-18 21:09:00 +0300
committerGitHub <noreply@github.com>2021-07-18 21:09:00 +0300
commit421a0f6b97dcfcfb1e5b990b3b9b1a453b13aaa3 (patch)
treeea12ff0aaa259b9a30cf03c1fde8fcc5f0e9f667 /applications/applications.c
parentfbb81483aecbec294f2d6c13316742e6ba5769d3 (diff)
[FL-1546, FL-1534, FL-1550] Drop F5, Certification preparation, Global application start lock (#585)
* Firmware: drop F5 target * Rename app-loader to loader * Update code owners file * Loader: global application start lock API, minor refactoring * Archive: update loader usage * Cli: Command flags, global application start lock * Apps: update cli API usage * Bootloader: minor refactoring * Firmware: minor build refactoring * SubGhz: GUI packet test * SubGhz: drop packet transmission and unused presets * Github: drop F5 from build * Archive: favorites * Archive: a little bit more of Favorites
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 53ae169a..4ea627d6 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -14,7 +14,7 @@ int32_t coreglitch_demo_0(void* p);
int32_t u8g2_qrcode(void* p);
int32_t gui_task(void* p);
int32_t irda(void* p);
-int32_t app_loader(void* p);
+int32_t loader(void* p);
int32_t nfc_task(void* p);
int32_t dolphin_task(void* p);
int32_t power_task(void* p);
@@ -78,7 +78,7 @@ const FlipperApplication FLIPPER_SERVICES[] = {
#ifdef SRV_MENU
{.app = menu_task, .name = "menu_task", .stack_size = 1024, .icon = &A_Plugins_14},
- {.app = app_loader, .name = "app_loader", .stack_size = 1024, .icon = &A_Plugins_14},
+ {.app = loader, .name = "loader", .stack_size = 1024, .icon = &A_Plugins_14},
#endif
#ifdef SRV_SD_FILESYSTEM
@@ -197,10 +197,6 @@ const FlipperApplication FLIPPER_APPS[] = {
{.app = app_gpio_test, .name = "GPIO", .stack_size = 1024, .icon = &A_GPIO_14},
#endif
-#ifdef APP_ARCHIVE
- {.app = app_archive, .name = "Archive", .stack_size = 4096, .icon = &A_FileManager_14},
-#endif
-
};
const size_t FLIPPER_APPS_COUNT = sizeof(FLIPPER_APPS) / sizeof(FlipperApplication);