add clock app & clock icon

This commit is contained in:
Eng1n33r
2022-06-01 21:27:32 +03:00
parent b5b2540c88
commit fa7c5f2402
14 changed files with 311 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ extern int32_t file_browser_app(void* p);
// Plugins
extern int32_t music_player_app(void* p);
extern int32_t wav_player_app(void* p);
extern int32_t clock_app(void *p);
// Games
extern int32_t snake_game_app(void* p);
@@ -210,6 +211,14 @@ const size_t FLIPPER_SYSTEM_APPS_COUNT = COUNT_OF(FLIPPER_SYSTEM_APPS);
// Main menu APP
const FlipperApplication FLIPPER_APPS[] = {
#ifdef APP_CLOCK
{.app = clock_app,
.name = "Clock",
.stack_size = 2048,
.icon = &A_Clock_14,
.flags = FlipperApplicationFlagDefault},
#endif
#ifdef APP_SUBGHZ
{.app = subghz_app,
.name = "Sub-GHz",