From 633f122929ab309af8cce276ab090db77463d33e Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Thu, 6 May 2021 02:40:03 +0200 Subject: [PATCH] Disable debug logging --- src/drv/hasp_drv_touch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/drv/hasp_drv_touch.cpp b/src/drv/hasp_drv_touch.cpp index c89c0021..438d15d9 100644 --- a/src/drv/hasp_drv_touch.cpp +++ b/src/drv/hasp_drv_touch.cpp @@ -102,13 +102,13 @@ static inline bool drv_touchpad_getXY(int16_t* touchX, int16_t* touchY) touched = Touch_getXY(&normal_x, &normal_y, false); #elif TOUCH_DRIVER == 5206 - touched = FT5206_getXY(&normal_x, &normal_y, false); + touched = FT5206_getXY(&normal_x, &normal_y, false); // no debug #elif TOUCH_DRIVER == 6336 - touched = FT6336U_getXY(&normal_x, &normal_y, true); + touched = FT6336U_getXY(&normal_x, &normal_y, false); // no debug #elif TOUCH_DRIVER == 610 - touched = STMPE610_getXY(&normal_x, &normal_y, drv_touch_rotation, true); + touched = STMPE610_getXY(&normal_x, &normal_y, drv_touch_rotation, false); // no debug #else // xpt2046_alt_drv_read(indev_driver, data);