Default CubeMX project for Nucleo-U5A5ZJ error in SystemClock_Config
Hello.
I'm working on setting up a brand new Nucleo STM32U5A5Z development board and have some issues.
My project is a completely bare-bones default with no security or BSP enabled. The application fails in SystemClock_Config() and enters the error handler. The issue seems to be related to the HSE as SystemClock_Config returns HAL_TIMEOUT here:
/* Check the HSE State */
if (pRCC_OscInitStruct->HSEState != RCC_HSE_OFF)
{
tickstart = HAL_GetTick();
/* Wait till HSE is ready */
while (READ_BIT(RCC->CR, RCC_CR_HSERDY) == 0U)
{
if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE)
{
return HAL_TIMEOUT;
}
}
}Thanks!

