|
#ifndef __WORK_H__
|
|
#define __WORK_H__
|
|
|
|
#include "main.h"
|
|
#include "key.h"
|
|
#include "pid.h"
|
|
#include "filter.h"
|
|
typedef enum
|
|
{
|
|
|
|
} work_e;
|
|
|
|
typedef struct
|
|
{
|
|
work_e type;
|
|
|
|
} work_t;
|
|
extern work_t work;
|
|
|
|
void work_init(void);
|
|
void work_process(void);
|
|
|
|
#endif // __WORK_H__
|