From 9bc2b4d8d789adaf4e37dbd30dea1353e9d56446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Thu, 4 Aug 2022 10:35:40 +0200 Subject: [PATCH] Skip unneccessary EINK update --- src/graphics/Screen.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index fc447dc7..2359c4dc 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -935,9 +935,11 @@ void Screen::setup() handleSetOn(true); // On some ssd1306 clones, the first draw command is discarded, so draw it - // twice initially. + // twice initially. Skip this for EINK Displays to save a few seconds during boot ui.update(); +#ifndef USE_EINK ui.update(); +#endif serialSinceMsec = millis(); // Subscribe to status updates