Fan Yang c1b22ede30
Add BSP for HPM6750EVK and HPM6750EVKMINI (#6374)
* Add CANFD support and correct typos

- Added CANFD required fields to can.h
- Fixed typos in can.h and can.c
- Corrected all the projects affected by the typo
- Fixed wrong line-ending in some affected can driver files

Signed-off-by: Fan YANG <fan.yang@hpmicro.com>

* update

* bsp: support boards from hpmicro

- Supported HPM6750EVKMINI
- Supported HPM6750EVK

Signed-off-by: Fan YANG <fan.yang@hpmicro.com>

Signed-off-by: Fan YANG <fan.yang@hpmicro.com>
Co-authored-by: Meco Man <920369182@qq.com>
2022-09-06 00:48:16 -04:00

41 lines
728 B
C

/*
* Copyright (c) 2021 hpmicro
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#ifndef HPM_TOUCH_H
#define HPM_TOUCH_H
#include "hpm_common.h"
#if CONFIG_TOUCH_FT5406
#include "hpm_ft5406.h"
#define HPM_TOUCH_MAX_POINTS (FT5406_MAX_TOUCH_POINTS)
#elif CONFIG_TOUCH_GT911
#include "hpm_gt911.h"
#define HPM_TOUCH_MAX_POINTS (GT911_MAX_TOUCH_POINTS)
#else
#error "unknown touch type, either have CONFIG_FT5406 or CONFIG_GT911 defined"
#endif
typedef struct {
uint16_t x;
uint16_t y;
} touch_point_t;
#ifdef __cplusplus
extern "C" {
#endif
hpm_stat_t touch_init(I2C_Type *i2c_ptr);
hpm_stat_t touch_get_data(touch_point_t *points, uint8_t *num_of_points);
#ifdef __cplusplus
}
#endif
#endif /* HPM_TOUCH_H */