Hello!We are use STM32H747 and TouchGFX. We are need to use DMA2D. But we have issue with mode DMA2D_R2M.Our configuration hdma2d.Instance = DMA2D;
hdma2d.Init.Mode = DMA2D_R2M;
hdma2d.Init.ColorMode = DMA2D_OUTPUT_ARGB8888;
hdma2d.Init.Output...
Is it possible to run the firmware from an external SDRAM?There is an example for h750, but it does not work with h747.I go to the address I need, but I get a hardfault into bootloader for first command into external sdram
Thanks for answer!But I found that for hdma2d.Init.Mode = DMA2D_R2M function HAL_DMA2D_Init (...) set into CR mode as 0x07, not 0x03.I updated code for correct mode and now all works!