We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd09b4d commit 8862804Copy full SHA for 8862804
lvgl_touch/ft6x36.c
@@ -118,16 +118,16 @@ bool ft6x36_read(lv_indev_drv_t *drv, lv_indev_data_t *data) {
118
last_x = ((data_buf[1] & FT6X36_MSB_MASK) << 8) | (data_buf[2] & FT6X36_LSB_MASK);
119
last_y = ((data_buf[3] & FT6X36_MSB_MASK) << 8) | (data_buf[4] & FT6X36_LSB_MASK);
120
121
+#if CONFIG_LV_FT6X36_SWAPXY
122
+ int16_t swap_buf = last_x;
123
+ last_x = last_y;
124
+ last_y = swap_buf;
125
+#endif
126
#if CONFIG_LV_FT6X36_INVERT_X
127
last_x = LV_HOR_RES - last_x;
128
#endif
129
#if CONFIG_LV_FT6X36_INVERT_Y
130
last_y = LV_VER_RES - last_y;
-#endif
-#if CONFIG_LV_FT6X36_SWAPXY
- int16_t swap_buf = last_x;
- last_x = last_y;
- last_y = swap_buf;
131
132
data->point.x = last_x;
133
data->point.y = last_y;
0 commit comments