You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
244 B

#ifndef APP_TASK_WDT
#define APP_TASK_WDT
#include "../ctask/task.h"
struct _s_task_wdt
{
TS_task task;
};
extern struct _s_task_wdt s_task_wdt;
extern void L3_task_wdt_init();
extern void L3_task_wdt_handle(struct _s_task_wdt *s);
#endif