HSE startup timeout on STM32F103RET7
I'm new to the STM32 so I apologize in advance for the trivial question.
In the following code from SetSysClockTo72() system_stm32f10x.c, the value for HSE_STARTUP_TIMEOUT is 0x0500. What max delay (msec) does this equate to?
/* Wait till HSE is ready and if Time out is reached exit */
do
{
HSEStatus = RCC->CR & RCC_CR_HSERDY;
StartUpCounter++;
} while((HSEStatus == 0) && (StartUpCounter != HSE_STARTUP_TIMEOUT));
I am running into an issue where we are seeing sporadic delay in the bootup sequence at cold temperatures and we're in the process of looking under every rock.
Thanks for the help.
