Black screen with TouchGFX
I have just started using TouchGFX on an Stm32H7A3ZIQ Nucleo board. I managed to setup the LTDC correctly and am able to change the color of the screen, which makes me assume that the LTDC is setup correctly.
After setting up TouchGFX with FreeRTOS, following the documentation, I keep getting stuck at a blackscreen.
I have configured touchgfx the following way:

Following the docs, I have enabled FreeRTOS, set the heap size to 70 000 Bytes and added the following task:

I have enabled the LTDC interrupt to ensure that the LTDC vsync signal drives touchgfx:

and added the following line to main.c after the LTDC configuration:
LTDC->IER |= LTDC_IER_LIE;as well as the line to the interrupt handler:
void LTDC_IRQHandler(void)
{
/* USER CODE BEGIN LTDC_IRQn 0 */
/* USER CODE END LTDC_IRQn 0 */
HAL_LTDC_IRQHandler(&hltdc);
/* USER CODE BEGIN LTDC_IRQn 1 */
HAL_LTDC_ProgramLineEvent(&hltdc, 0);
/* USER CODE END LTDC_IRQn 1 */
}In TouchGFX designer I have created a very simple screen:

Clicked generate and ensured that the code is in the project:

Does someone have an idea what I might be missing?

