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.
22 lines
586 B
22 lines
586 B
#ifndef _app_task_pen_head_H
|
|
#define _app_task_pen_head_H
|
|
|
|
#include "../bsp/bsp_config.h"
|
|
//#include "../bsp/w600.h"
|
|
#include "../ctask/task.h"
|
|
#include "../app/app_config.h"
|
|
|
|
|
|
struct _s_task_pen_head_
|
|
{
|
|
TS_task task;
|
|
U8 index;
|
|
PenPoint point;
|
|
};
|
|
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
|
|
|