HAL_Delay() stopped working after touchGFX initial?
Hi there,
I am trying a touchGFX demo on my homemade board with STM32H743IIT6.
Everything is OK except the HAL_Delay() is not working after the MX_TouchGFX_Init().
The following code works well:
...
MX_GPIO_Init();
MX_FMC_Init();
MX_CRC_Init();
MX_DMA2D_Init();
MX_LTDC_Init();
HAL_Delay(1);
MX_TouchGFX_Init();
MX_TouchGFX_PreOSInit();
osKernelInitialize();
...However, the change below will stop the program at HAL_Delay(1):
...
MX_GPIO_Init();
MX_FMC_Init();
MX_CRC_Init();
MX_DMA2D_Init();
MX_LTDC_Init();
MX_TouchGFX_Init();
HAL_Delay(1);
MX_TouchGFX_PreOSInit();
osKernelInitialize();
...I saw some talking(see details ) about this issue, but it does not seem to have an official solution.
How is this issue going now?
(I need the HAL_Delay() to initial my touch sensor after peripherals initialization)
