STM32LTDC: DMA2D enabling might be too late #2
Loading…
Add table
Add a link
Reference in a new issue
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_DMA2Din the board file and might need to resort to setting it in the globalgfxconf.hsimilar to how we setGDISP_LTDC_USE_RGB565ingfxconf.hif 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.