Question
SystemInit_ExtMemCtl() tmpreg is not initialized between each while loop
Hello ST team,
I use STM32CubeF4 1.25.0
in SystemInit_ExtMemCtl() of system_stm32f4xx.c
tmpreg is not initialized between each while loop, so tmpreg is 0 and the FMC_Bank status is not read
tmpreg = 0xFFFF; << is missing
while((tmpreg != 0) && (timeout-- > 0))
{
tmpreg = FMC_Bank5_6->SDSR & 0x00000020;
}
Regards
