2021-10-19 01:05 AM
Hello,
We have custom board with the STM32H7A3 and when i configure the HSI i always get error at. it return HAL_TIMEOUT
/* Wait till PLL is ready */
while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == 0U)
{
if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE)
{
return HAL_TIMEOUT;
}
}
I tried with the STM32H7B3 discovery board and its fine when i use the HSI with same configuration.
Attached you can see screen of my clock configuration.
Solved! Go to Solution.
2021-10-19 11:53 PM
@TDK
HSI RC was divided by 2 in the configuration i just made it 1 and it worked
2021-10-19 01:17 AM
i found the problem
2021-10-19 06:47 AM
Please post the solution and mark it as solved so that others who come to this thread may benefit.
2021-10-19 11:53 PM
@TDK
HSI RC was divided by 2 in the configuration i just made it 1 and it worked