chargeController/APP/application/Src/start.c

15 lines
150 B
C
Raw Normal View History

2024-12-06 09:38:25 +00:00
#include "start.h"
2024-12-06 13:23:28 +00:00
#include "inFlash.h"
#include "TimeSliceOffset.h"
2024-12-06 09:38:25 +00:00
void start(void)
{
2024-12-06 13:23:28 +00:00
config_info_start();
2024-12-06 09:38:25 +00:00
2024-12-06 13:23:28 +00:00
TimeSliceOffset_Start();
2024-12-06 09:38:25 +00:00
}