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.

23 lines
586 B

4 years ago
#ifndef _app_task_pen_head_H
#define _app_task_pen_head_H
#include "../bsp/bsp_config.h"
//#include "../bsp/w600.h"
4 years ago
#include "../ctask/task.h"
#include "../app/app_config.h"
4 years ago
4 years ago
struct _s_task_pen_head_
{
TS_task task;
U8 index;
4 years ago
PenPoint point;
};
4 years ago
extern struct _s_task_pen_head_ s_task_pen_write;
extern struct _s_task_pen_head_ s_task_pen_read;
extern void L3_task_pen_head_write_init();
extern void L3_task_pen_head_read_init();
extern void L3_task_pen_head_write_handle(struct _s_task_pen_head_ *s);
extern void L3_task_pen_head_read_handle(struct _s_task_pen_head_ *s);
#endif