[FL-2627] Flipper applications: SDK, build and debug system (#1387)
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
97
applications/services/power/power_service/power.h
Normal file
97
applications/services/power/power_service/power.h
Normal file
@@ -0,0 +1,97 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <core/pubsub.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define RECORD_POWER "power"
|
||||
|
||||
typedef struct Power Power;
|
||||
|
||||
typedef enum {
|
||||
PowerBootModeNormal,
|
||||
PowerBootModeDfu,
|
||||
PowerBootModeUpdateStart,
|
||||
} PowerBootMode;
|
||||
|
||||
typedef enum {
|
||||
PowerEventTypeStopCharging,
|
||||
PowerEventTypeStartCharging,
|
||||
PowerEventTypeFullyCharged,
|
||||
PowerEventTypeBatteryLevelChanged,
|
||||
} PowerEventType;
|
||||
|
||||
typedef union {
|
||||
uint8_t battery_level;
|
||||
} PowerEventData;
|
||||
|
||||
typedef struct {
|
||||
PowerEventType type;
|
||||
PowerEventData data;
|
||||
} PowerEvent;
|
||||
|
||||
typedef struct {
|
||||
bool gauge_is_ok;
|
||||
|
||||
float current_charger;
|
||||
float current_gauge;
|
||||
|
||||
float voltage_charger;
|
||||
float voltage_gauge;
|
||||
float voltage_vbus;
|
||||
|
||||
uint32_t capacity_remaining;
|
||||
uint32_t capacity_full;
|
||||
|
||||
float temperature_charger;
|
||||
float temperature_gauge;
|
||||
|
||||
uint8_t charge;
|
||||
uint8_t health;
|
||||
} PowerInfo;
|
||||
|
||||
/** Power off device
|
||||
*/
|
||||
void power_off(Power* power);
|
||||
|
||||
/** Reboot device
|
||||
*
|
||||
* @param mode PowerBootMode
|
||||
*/
|
||||
void power_reboot(PowerBootMode mode);
|
||||
|
||||
/** Get power info
|
||||
*
|
||||
* @param power Power instance
|
||||
* @param info PowerInfo instance
|
||||
*/
|
||||
void power_get_info(Power* power, PowerInfo* info);
|
||||
|
||||
/** Get power event pubsub handler
|
||||
*
|
||||
* @param power Power instance
|
||||
*
|
||||
* @return FuriPubSub instance
|
||||
*/
|
||||
FuriPubSub* power_get_pubsub(Power* power);
|
||||
|
||||
/** Check battery health
|
||||
*
|
||||
* @return true if battery is healthy
|
||||
*/
|
||||
bool power_is_battery_healthy(Power* power);
|
||||
|
||||
/** Enable or disable battery low level notification mesage
|
||||
*
|
||||
* @param power Power instance
|
||||
* @param enable true - enable, false - disable
|
||||
*/
|
||||
void power_enable_low_battery_level_notification(Power* power, bool enable);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user