第一次提交

This commit is contained in:
2026-01-12 18:46:01 +08:00
commit b0f986fb67
18653 changed files with 7101565 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/**
* @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