88c5c55be3
improved driver creation fixed compile warnings in check.h hello_world example is now working again with lvgl
26 lines
538 B
C
26 lines
538 B
C
#pragma once
|
|
|
|
#include "nb_app.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Forward declaration
|
|
typedef struct nb_hardware nb_hardware_t;
|
|
|
|
typedef void (*nb_on_system_start_)(nb_hardware_t* hardware);
|
|
|
|
extern const nb_app_t* const FLIPPER_SERVICES[];
|
|
extern const size_t FLIPPER_SERVICES_COUNT;
|
|
|
|
extern const nb_app_t* const FLIPPER_SYSTEM_APPS[];
|
|
extern const size_t FLIPPER_SYSTEM_APPS_COUNT;
|
|
|
|
extern const nb_on_system_start_ FLIPPER_ON_SYSTEM_START[];
|
|
extern const size_t FLIPPER_ON_SYSTEM_START_COUNT;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|