Skip to content

Commit e6edf21

Browse files
committed
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.
1 parent 4a5b5f9 commit e6edf21

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/systemtask/SystemTask.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,14 @@ void SystemTask::Work() {
144144
lcd.Init();
145145

146146
twiMaster.Init();
147+
/*
148+
* TODO We disable this warning message until we ensure it won't be displayed
149+
* on legitimate PineTime equipped with a compatible touch controller.
150+
* (some users reported false positive). See https://github.com/InfiniTimeOrg/InfiniTime/issues/763
147151
if (!touchPanel.Init()) {
148152
bootError = BootErrors::TouchController;
149153
}
154+
*/
150155
dateTimeController.Register(this);
151156
batteryController.Register(this);
152157
motorController.Init();

0 commit comments

Comments
 (0)