We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5c9eab commit 293fbdbCopy full SHA for 293fbdb
main/input/touchscreen.inc
@@ -65,7 +65,6 @@ static void touchscreen_task(void* ignored)
65
uint16_t touch_strength[1];
66
uint8_t touch_cnt = 10;
67
68
- // FIXME: don't allow multiple touches within 300 ms?
69
// FIXME: this doesn't currently work with Display -> Flip Orientation feature
70
// but it could by changing the touch_y[0] > 200 logic with < 40 and inverting prev with next and viceversa
71
while (!shutdown_requested) {
@@ -85,7 +84,7 @@ static void touchscreen_task(void* ignored)
85
84
} else {
86
continue;
87
}
88
- vTaskDelay(100 / portTICK_PERIOD_MS);
+ vTaskDelay(250 / portTICK_PERIOD_MS);
89
90
91
0 commit comments