diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 83880d9a5..e2542489a 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -36,6 +36,7 @@ along with this program. If not, see . #include "target_specific.h" #include "utils.h" #include "gps/GeoCoord.h" +#include "sleep.h" #ifndef NO_ESP32 #include "mesh/http/WiFiAPClient.h" @@ -875,6 +876,11 @@ int32_t Screen::runOnce() // oldFrameState = ui.getUiState()->frameState; DEBUG_MSG("Setting idle framerate\n"); targetFramerate = IDLE_FRAMERATE; + +#ifndef NO_ESP32 + setCPUFast(false); // Turn up the CPU to improve screen animations +#endif + ui.setTargetFPS(targetFramerate); forceDisplay(); } @@ -1074,6 +1080,11 @@ void Screen::setFastFramerate() // We are about to start a transition so speed up fps targetFramerate = SCREEN_TRANSITION_FRAMERATE; + +#ifndef NO_ESP32 + setCPUFast(true); // Turn up the CPU to improve screen animations +#endif + ui.setTargetFPS(targetFramerate); setInterval(0); // redraw ASAP runASAP = true;