ams-master-23/Core/Src/soc_estimation.c
Jasper v. Blanckenburg 2eb7109416 Revert "Implementation of SoC Prediction"
This reverts commit c4543e7e01b5c1c8fa448855ed63b13944a06a2c.
2023-06-25 15:28:53 +02:00

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
}