/** * @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 extern bool touch_get_event(int *x, int *y, int *id); extern void board_touch_init( sdrv_i2c_t *i2c_ctrl); #endif