From 8392401cf9dc123ebebda62021b3da630dad24cc Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Fri, 6 May 2022 17:56:10 +0100 Subject: [PATCH] Badger 2040: Fix partial update hang for #348 --- micropython/modules/badger2040/badger2040.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/modules/badger2040/badger2040.cpp b/micropython/modules/badger2040/badger2040.cpp index fbd29c26..748e8c3a 100644 --- a/micropython/modules/badger2040/badger2040.cpp +++ b/micropython/modules/badger2040/badger2040.cpp @@ -179,7 +179,7 @@ MICROPY_EVENT_POLL_HOOK } absolute_time_t t_end = make_timeout_time_ms(self->badger2040->update_time()); - self->badger2040->partial_update(x, y, w, h); + self->badger2040->partial_update(x, y, w, h, false); // Ensure blocking for the minimum amount of time // in cases where "is_busy" is unreliable.