Touch fix bl timeout (#1108)

* Touch debug from kallanreed

* Revert "init commit for fix touchscreen bad corner (#1071)"

This reverts commit 53fcdedb88.

* increase touch sensitivity by lowering the threshold

---------

Co-authored-by: Eisenberger Tamas <e.tamas@iwstudio.hu>
This commit is contained in:
E.T
2023-06-04 22:41:55 +02:00
committed by GitHub
parent 28319652c1
commit 9c39061590
4 changed files with 16 additions and 12 deletions

View File

@@ -38,7 +38,7 @@ using sample_t = uint16_t;
constexpr sample_t sample_max = 1023;
constexpr sample_t touch_threshold = sample_max / 5;
constexpr sample_t touch_threshold = sample_max / 16;
struct Samples {
sample_t xp;