From 8aa46f2b675c339b8e6d20bfb127a6d826c7a596 Mon Sep 17 00:00:00 2001 From: Todd Herbert Date: Sun, 10 Mar 2024 01:25:45 +1300 Subject: [PATCH] move initial refresh handling to meshtastic/firmware --- src/GxEPD2_EPD.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/GxEPD2_EPD.cpp b/src/GxEPD2_EPD.cpp index 9c4e658..47b798f 100644 --- a/src/GxEPD2_EPD.cpp +++ b/src/GxEPD2_EPD.cpp @@ -255,11 +255,6 @@ bool GxEPD2_EPD::isBusy() { // Used to skip _waitWhileBusy(), for meshtastic async bool GxEPD2_EPD::_isUpdatingFull(const char* comment) { - // On first update, a fast-refresh might also clear screen using a full-refresh - // If meshtastic/firmware asked for fast-refresh, it will expect this full-refresh to block. So: force that to happen - if (_initial_refresh) - return false; - // True if comment matches return ( strcmp(comment, "_Update_Full") == 0 ); }