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.
18 lines
372 B
18 lines
372 B
/*
|
|
* Copyright (c) 2006-2020, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2019-07-22 liuduanfei the first version
|
|
*/
|
|
|
|
#ifndef _FT5426_H_
|
|
#define _FT5426_H_
|
|
|
|
#include "drivers/touch.h"
|
|
|
|
int rt_hw_ft5426_init(const char *name, struct rt_touch_config *cfg);
|
|
|
|
#endif /* _FT5426_H_ */
|
|
|