18 lines
321 B
C
18 lines
321 B
C
/**
|
|
* @file touch_drv.h
|
|
* @touch driver head file.
|
|
*
|
|
* @Copyright (c) 2022 Semidrive Semiconductor.
|
|
* @All rights reserved.
|
|
*
|
|
**/
|
|
|
|
#ifndef TOUCH_DRV_H_
|
|
#define TOUCH_DRV_H_
|
|
|
|
#include <sdrv_i2c.h>
|
|
|
|
extern bool touch_get_event(int *x, int *y, int *id);
|
|
extern void board_touch_init( sdrv_i2c_t *i2c_ctrl);
|
|
|
|
#endif |