2024-12-10 10:29:05 +00:00
|
|
|
|
|
|
|
#ifndef BL_TASK_H_
|
|
|
|
#define BL_TASK_H_
|
|
|
|
|
|
|
|
#include "timeSliceOffset.h"
|
|
|
|
|
|
|
|
void task_Init(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-12-10 14:25:55 +00:00
|
|
|
void beginStartControlTask(void);
|
2024-12-11 09:51:48 +00:00
|
|
|
void beginSoftStartTask(void);
|
2024-12-12 10:00:30 +00:00
|
|
|
void beginHYconfigMode(void);
|
2024-12-14 09:52:26 +00:00
|
|
|
void uartTaskInit(void);
|
2024-12-10 10:29:05 +00:00
|
|
|
|
2024-12-14 09:52:26 +00:00
|
|
|
void startShortCircuitProtection(void);
|
|
|
|
void stopShortCircuitProtection(void);
|
|
|
|
void startExcessiveLoadProtection(void);
|
2024-12-10 10:29:05 +00:00
|
|
|
|
|
|
|
#endif
|