fix touch address error

This commit is contained in:
wuzheng 2022-11-21 14:29:17 +08:00
parent e31199a104
commit 7c252bda56
2 changed files with 7 additions and 1 deletions

View File

@ -215,6 +215,12 @@ typedef struct
uint16_t press;
}TouchDataParam;
struct TouchDataStandard
{
uint16 x;
uint16 y;
};
struct RtcDrvConfigureParam
{
int rtc_operation_cmd;

View File

@ -38,7 +38,7 @@ struct Touch_event {
};
#define DEFAULT_NUM 0x0D
#define TOUCH_ADDRESS 0x44
#define TOUCH_ADDRESS 0x40
volatile bool SemReleaseFlag = 0;
static struct Bus* i2c_bus = NONE;