unleashed-firmware/firmware/targets/f7/ble_glue/battery_service.h
2022-05-18 19:17:59 +03:00

22 lines
320 B
C

#pragma once
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
void battery_svc_start();
void battery_svc_stop();
bool battery_svc_is_started();
bool battery_svc_update_level(uint8_t battery_level);
bool battery_svc_update_power_state(bool is_charging);
#ifdef __cplusplus
}
#endif