chargeController/APP/application/Src/start.c

18 lines
210 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"
#include "pDebug.h"
2024-12-06 09:38:25 +00:00
void start(void)
{
Init();
2024-12-11 09:51:48 +00:00
task_Init();
2024-12-06 09:38:25 +00:00
debug("start\n");
2024-12-06 13:23:28 +00:00
TimeSliceOffset_Start();
2024-12-06 09:38:25 +00:00
}