69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
|
/*
|
||
|
* File : drv_touch.h
|
||
|
* This file is part of RT-Thread RTOS
|
||
|
* COPYRIGHT (C) 2017, RT-Thread Development Team
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License along
|
||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2018-02-08 Zhangyihong the first version
|
||
|
*/
|
||
|
#ifndef __DRV_TOUCH_H__
|
||
|
#define __DRV_TOUCH_H__
|
||
|
|
||
|
#include "rtthread.h"
|
||
|
#include "rtdevice.h"
|
||
|
|
||
|
#define TOUCH_DBG_LEVEL DBG_LOG
|
||
|
|
||
|
#define IIC_RETRY_NUM 2
|
||
|
|
||
|
#define TOUCH_EVENT_UP (0x01)
|
||
|
#define TOUCH_EVENT_DOWN (0x02)
|
||
|
#define TOUCH_EVENT_MOVE (0x03)
|
||
|
#define TOUCH_EVENT_NONE (0x80)
|
||
|
|
||
|
struct touch_message
|
||
|
{
|
||
|
rt_uint16_t x;
|
||
|
rt_uint16_t y;
|
||
|
rt_uint8_t event;
|
||
|
};
|
||
|
typedef struct touch_message *touch_msg_t;
|
||
|
|
||
|
struct touch_ops
|
||
|
{
|
||
|
void (* isr_enable)(rt_bool_t);
|
||
|
rt_err_t (* read_point)(touch_msg_t);
|
||
|
void (* init)(struct rt_i2c_bus_device *);
|
||
|
void (* deinit)(void);
|
||
|
};
|
||
|
typedef struct touch_ops *touch_ops_t;
|
||
|
|
||
|
struct touch_drivers
|
||
|
{
|
||
|
rt_list_t list;
|
||
|
unsigned char address;
|
||
|
rt_bool_t (*probe)(struct rt_i2c_bus_device *i2c_bus);
|
||
|
rt_sem_t isr_sem;
|
||
|
touch_ops_t ops;
|
||
|
void *user_data;
|
||
|
};
|
||
|
typedef struct touch_drivers *touch_drv_t;
|
||
|
|
||
|
extern void rt_touch_drivers_register(touch_drv_t drv);
|
||
|
#endif
|