delayMicroseconds(WAIT_TIME) after aborting a frame

This commit is contained in:
sascha 2021-07-10 22:23:27 -07:00
parent ae4c696d53
commit 9b6a31f7a8

View File

@ -72,6 +72,9 @@ protected:
// this fixes the flickering first pixel that started to occur with
// framework version 3.0.0
if ((__clock_cycles() - last_mark) >= (T1 + T2 + T3 - 5)) {
os_intr_unlock();
delayMicroseconds(WAIT_TIME);
os_intr_lock();
return true;
}
}