1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Merge 94a6dc08d838d78eaf96c91f380e5c0fed3c1484 into dev

This commit is contained in:
github-actions[bot] 2020-09-21 22:05:35 +00:00 committed by GitHub
commit 02afe7f82c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)