From 0300eb3849609de4e8975b4c939e79ba9605b11a Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Wed, 30 Dec 2020 01:19:49 -0800 Subject: [PATCH] tici: fix backlight timer interval --- selfdrive/ui/qt/home.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/home.cc b/selfdrive/ui/qt/home.cc index 033ba115ce..3b2d6b29c9 100644 --- a/selfdrive/ui/qt/home.cc +++ b/selfdrive/ui/qt/home.cc @@ -220,7 +220,7 @@ void GLWindow::initializeGL() { wake(); timer->start(0); - backlight_timer->start(BACKLIGHT_DT * 100); + backlight_timer->start(BACKLIGHT_DT * 1000); } void GLWindow::backlightUpdate() {