chargeController/APP/application/Src/start.c

16 lines
152 B
C
Raw Normal View History

2024-12-06 09:38:25 +00:00
#include "start.h"
#include "TimeSliceOffset.h"
#include "Init.h"
#include "task.h"
2024-12-06 09:38:25 +00:00
void start(void)
{
Init();
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
}