Port FT22 code

This commit is contained in:
2023-03-12 21:06:23 +01:00
parent b453286f08
commit 4f43895235
20 changed files with 794 additions and 51 deletions

14
Core/Src/soc_estimation.c Normal file
View File

@ -0,0 +1,14 @@
#include "soc_estimation.h"
#include <stdint.h>
uint8_t current_soc;
void soc_init() {
current_soc = 0;
// TODO
}
void soc_update() {
// TODO
}