* fbt: restored loader support for debug apps (no GUI tho) * desktop: fixed code for handling autorun apps * loader: fixed autorun app messing up last update stage * Loader: handle status without message Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <furi.h>
 | 
						|
#include <gui/icon.h>
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    FlipperInternalApplicationFlagDefault = 0,
 | 
						|
    FlipperInternalApplicationFlagInsomniaSafe = (1 << 0),
 | 
						|
} FlipperInternalApplicationFlag;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    const FuriThreadCallback app;
 | 
						|
    const char* name;
 | 
						|
    const char* appid;
 | 
						|
    const size_t stack_size;
 | 
						|
    const Icon* icon;
 | 
						|
    const FlipperInternalApplicationFlag flags;
 | 
						|
} FlipperInternalApplication;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    const char* name;
 | 
						|
    const Icon* icon;
 | 
						|
    const char* path;
 | 
						|
} FlipperExternalApplication;
 | 
						|
 | 
						|
typedef void (*FlipperInternalOnStartHook)(void);
 | 
						|
 | 
						|
extern const char* FLIPPER_AUTORUN_APP_NAME;
 | 
						|
 | 
						|
/* Services list
 | 
						|
 * Spawned on startup
 | 
						|
 */
 | 
						|
extern const FlipperInternalApplication FLIPPER_SERVICES[];
 | 
						|
extern const size_t FLIPPER_SERVICES_COUNT;
 | 
						|
 | 
						|
/* Apps list
 | 
						|
 * Spawned by loader
 | 
						|
 */
 | 
						|
extern const FlipperInternalApplication FLIPPER_APPS[];
 | 
						|
extern const size_t FLIPPER_APPS_COUNT;
 | 
						|
 | 
						|
/* On system start hooks
 | 
						|
 * Called by loader, after OS initialization complete
 | 
						|
 */
 | 
						|
extern const FlipperInternalOnStartHook FLIPPER_ON_SYSTEM_START[];
 | 
						|
extern const size_t FLIPPER_ON_SYSTEM_START_COUNT;
 | 
						|
 | 
						|
/* System apps
 | 
						|
 * Can only be spawned by loader by name
 | 
						|
 */
 | 
						|
extern const FlipperInternalApplication FLIPPER_SYSTEM_APPS[];
 | 
						|
extern const size_t FLIPPER_SYSTEM_APPS_COUNT;
 | 
						|
 | 
						|
/* Debug apps 
 | 
						|
 * Can only be spawned by loader by name
 | 
						|
 */
 | 
						|
extern const FlipperInternalApplication FLIPPER_DEBUG_APPS[];
 | 
						|
extern const size_t FLIPPER_DEBUG_APPS_COUNT;
 | 
						|
 | 
						|
extern const FlipperInternalApplication FLIPPER_ARCHIVE;
 | 
						|
 | 
						|
/* Settings list
 | 
						|
 * Spawned by loader
 | 
						|
 */
 | 
						|
extern const FlipperInternalApplication FLIPPER_SETTINGS_APPS[];
 | 
						|
extern const size_t FLIPPER_SETTINGS_APPS_COUNT;
 | 
						|
 | 
						|
/* External Menu Apps list
 | 
						|
 * Spawned by loader
 | 
						|
 */
 | 
						|
extern const FlipperExternalApplication FLIPPER_EXTERNAL_APPS[];
 | 
						|
extern const size_t FLIPPER_EXTERNAL_APPS_COUNT;
 |