15 lines
234 B
C
15 lines
234 B
C
#ifndef __WORK_TASK_H__
|
|
#define __WORK_TASK_H__
|
|
|
|
#include "common_types.h"
|
|
#include <rtthread.h>
|
|
|
|
RetCode work_task_init(void);
|
|
|
|
void work_task_send(uint32_t msg);
|
|
|
|
extern rt_thread_t work_thread;
|
|
extern rt_mailbox_t work_mb;
|
|
|
|
#endif
|