summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-11-07 18:00:34 +0100
committerJean-François Milants <jf@codingfield.com>2021-11-07 18:00:34 +0100
commite6edf2155296864114a62cecbd0244c65c020a48 (patch)
treefccda54b9c3e52b968a12c16359f30c2d8a514e9
parent4a5b5f954f12de1574af8e3efec094bb4bdbb542 (diff)
Disable the warning that is displayed when the initialization of the touch controller fails, as some users reported that it was displayed when a valid touch controller was installed.
-rw-r--r--src/systemtask/SystemTask.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/systemtask/SystemTask.cpp b/src/systemtask/SystemTask.cpp
index 0a3f9951..f2cc1dfb 100644
--- a/src/systemtask/SystemTask.cpp
+++ b/src/systemtask/SystemTask.cpp
@@ -144,9 +144,14 @@ void SystemTask::Work() {
lcd.Init();
twiMaster.Init();
+ /*
+ * TODO We disable this warning message until we ensure it won't be displayed
+ * on legitimate PineTime equipped with a compatible touch controller.
+ * (some users reported false positive). See https://github.com/InfiniTimeOrg/InfiniTime/issues/763
if (!touchPanel.Init()) {
bootError = BootErrors::TouchController;
}
+ */
dateTimeController.Register(this);
batteryController.Register(this);
motorController.Init();