ams-master-23/Core/Src/soc_estimation.c

15 lines
154 B
C

#include "soc_estimation.h"
#include <stdint.h>
uint8_t current_soc;
void soc_init() {
current_soc = 0;
// TODO
}
void soc_update() {
// TODO
}