12 lines
177 B
C
12 lines
177 B
C
#ifndef INC_SOC_ESTIMATION_H
|
|
#define INC_SOC_ESTIMATION_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint8_t current_soc;
|
|
|
|
void soc_init();
|
|
void soc_update();
|
|
|
|
#endif // INC_SOC_ESTIMATION_H
|