About STM32F429IGTx clock setting
Hello, I would like to ask about the clock configuration of STM32F429.
I use STMcubeIDE for project configuration and my clock configuration is as follows:

The GPIO port is configured as follows:

I tried to turn on an LED light, but the program froze.
When using STMcubeIDE1.11.0, the program is in SystemClock_Config()
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) ! = HAL_OK)
{
Error_Handler();
}
An error occurs, and it is stuck
When using STMcubeIDE1.7.0, the LED light flashed quickly with the naked eye, and the simulation found that after running for a period of time, it ran out, about 1ms, and the suspect was still the reason for the clock configuration. Can you answer the question for me
