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.
17 lines
297 B
17 lines
297 B
5 years ago
|
#ifndef APP_TASK_RELAY_H
|
||
|
#define APP_TASK_RELAY_H
|
||
|
|
||
|
#include "../bsp/bsp_relay.h"
|
||
|
|
||
|
struct _s_task_relay_
|
||
|
{
|
||
|
TS_task task;
|
||
|
vU8 pc;
|
||
|
vU32 pc_stmp;
|
||
|
};
|
||
|
|
||
|
extern struct _s_task_relay_ s_task_relay;
|
||
|
extern void L3_task_relay_init(void);
|
||
|
extern void L3_task_relay_handle(struct _s_task_relay_ *s);
|
||
|
|
||
|
#endif
|