Question
How to sure LSI of stm32f103 started?
My product has a 5% chance of that LSI didn't start when system Power up. So IWDG not functional due to LSI missed.
Here is my code to start LSI
******************************
LSI_CNT = 0;
RCC_LSICmd(ENABLE);
while( RCC_GetFlagStatus(RCC_FLAG_LSIRDY) == RESET )
{
LSI_CNT++;
if( LSI_CNT > 100) break;
}
*******************************
Is there any software solution (code segment ) for suring LSI start perfectly at system power up?
