From 70670540ab6958e3c486c3ca93ae9021cc3d7128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=87=AF?= <7936747+huang_kai71@user.noreply.gitee.com> Date: Wed, 2 Jun 2021 11:10:59 +0800 Subject: [PATCH] update model/input/driver/touchscreen/touch_gt911.c. --- model/input/driver/touchscreen/touch_gt911.c | 1 - 1 file changed, 1 deletion(-) diff --git a/model/input/driver/touchscreen/touch_gt911.c b/model/input/driver/touchscreen/touch_gt911.c index 9736112ef..1bfed4376 100644 --- a/model/input/driver/touchscreen/touch_gt911.c +++ b/model/input/driver/touchscreen/touch_gt911.c @@ -99,7 +99,6 @@ static void ParsePointData(ChipDevice *device, FrameData *frame, uint8_t *buf, u if (frame->fingers[i].x == 0) { frame->fingers[i].x = X_OFFSET; } - HDF_LOGD("%s: x = %d, y = %d", __func__, frame->fingers[i].x, frame->fingers[i].y); } else if (chipVer == 1) { // chipversion B:gt911_zsj4p0 frame->fingers[i].x = resX - 1 - ((buf[GT_POINT_SIZE * i + GT_X_LOW] & ONE_BYTE_MASK) | ((buf[GT_POINT_SIZE * i + GT_X_HIGH] & ONE_BYTE_MASK) << ONE_BYTE_OFFSET)); -- Gitee