dfcf0ea0eb
* Debug apps moved into its own menu category, APP_DEBUG flag added * Menu power icon added * Added APP_DEBUG flag to flash_core1 bash script * Removed commented section in app-loader Co-authored-by: あく <alleteam@gmail.com>
43 lines
974 B
C
43 lines
974 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <assets_icons.h>
|
|
|
|
typedef struct {
|
|
const FuriThreadCallback app;
|
|
const char* name;
|
|
const size_t stack_size;
|
|
const IconName icon;
|
|
} FlipperApplication;
|
|
|
|
/* Services list
|
|
* Spawned on startup
|
|
*/
|
|
extern const FlipperApplication FLIPPER_SERVICES[];
|
|
extern const size_t FLIPPER_SERVICES_COUNT;
|
|
|
|
/* Apps list
|
|
* Spawned by app-loader
|
|
*/
|
|
extern const FlipperApplication FLIPPER_APPS[];
|
|
extern const size_t FLIPPER_APPS_COUNT;
|
|
|
|
/* Plugins list
|
|
* Spawned by app-loader
|
|
*/
|
|
extern const FlipperApplication FLIPPER_PLUGINS[];
|
|
extern const size_t FLIPPER_PLUGINS_COUNT;
|
|
|
|
/* Debug menu apps
|
|
* Spawned by app-loader
|
|
*/
|
|
extern const FlipperApplication FLIPPER_DEBUG_APPS[];
|
|
extern const size_t FLIPPER_DEBUG_APPS_COUNT;
|
|
|
|
/* Seperate scene app holder
|
|
* Spawned by app-loader
|
|
*/
|
|
extern const FlipperApplication FLIPPER_SCENE;
|
|
extern const FlipperApplication FLIPPER_SCENE_APPS[];
|
|
extern const size_t FLIPPER_SCENE_APPS_COUNT;
|