From 9a414d9c77327f6030c050d2e0dbb8877241ae78 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Mon, 12 Oct 2020 08:13:32 +0800 Subject: [PATCH] fix my breakage of screen waking --- src/graphics/Screen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/Screen.h b/src/graphics/Screen.h index 96e18ac5..e4007aea 100644 --- a/src/graphics/Screen.h +++ b/src/graphics/Screen.h @@ -202,7 +202,7 @@ class Screen : public concurrency::OSThread return true; // claim success if our display is not in use else { bool success = cmdQueue.enqueue(cmd, 0); - setInterval(0); // handle ASAP + enabled = true; // handle ASAP (we are the registered reader for cmdQueue, but might have been disabled) return success; } }