From 2134b4db9b3678f5c7172b171e9b322027b9232b Mon Sep 17 00:00:00 2001 From: geeksville Date: Tue, 17 Mar 2020 16:36:12 -0700 Subject: [PATCH] fix #40 force an extra redraw for the bootscreen, some clones drop the first draw cmd --- src/screen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/screen.cpp b/src/screen.cpp index e1749e3ca..977ef2d83 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -593,6 +593,7 @@ void Screen::setup() // dispdev.setFont(Custom_ArialMT_Plain_10); ui.disableAutoTransition(); // we now require presses + ui.update(); // force an immediate draw of the bootscreen, because on some ssd1306 clones, the first draw command is discarded #endif }