This commit is contained in:
github-actions[bot]
2020-09-21 22:05:35 +00:00
committed by GitHub

View File

@@ -219,8 +219,11 @@ static void invalidate_cache(void)
{
lv_disp_t * disp = _lv_refr_get_disp_refreshing();
if(disp->driver.clean_dcache_cb) disp->driver.clean_dcache_cb(&disp->driver);
else
else {
#if __CORTEX_M >= 0x07
SCB_CleanInvalidateDCache();
#endif
}
}
static void dma2d_wait(void)