STM32LTDC: DMA2D enabling might be too late #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The following snipped is located in
/drivers/gdisp/STM32LTDC/gdisp_lld_STM32LTDC.h
:However, this snipped is processed before the board file gets included.
This needs some investigation/checking/testing/fixing.
We might not be able to set
LTDC_USE_DMA2D
in the board file and might need to resort to setting it in the globalgfxconf.h
similar to how we setGDISP_LTDC_USE_RGB565
ingfxconf.h
if needed.Confirmed: We need to either do this in the config file or the
gfxconf.h
.We're therefore going to "expose" all STM32LTDC driver related options to
gfxconf.h
.Fixed.