mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-15 00:33:05 +03:00
016f0f3493
This reverts commit fec7523311
.
21 lines
264 B
C
21 lines
264 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|