fb73d3bd52
* platform: include only used api-hal files * api-hal-nfc: introduce nfc hal * nfc_worker: rework nfc worker * nfc: move nfc from services to applications, add startup hook * api-hal-nfc: init nfc worker in api_hal_detect * nfc: rework nfc application * nfc: fix app exit * api-hal-nfc: init nfc worker only once
51 lines
1.2 KiB
C
51 lines
1.2 KiB
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;
|
|
|
|
typedef void (*FlipperOnStartHook)(void);
|
|
|
|
/* 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;
|
|
|
|
/* On system start hooks
|
|
* Called by app-loader, after OS initialization complete
|
|
*/
|
|
extern const FlipperOnStartHook FLIPPER_ON_SYSTEM_START[];
|
|
extern const size_t FLIPPER_ON_SYSTEM_START_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;
|