Fix warnings in autogenerated file system_stm32f4xx.c

This commit is contained in:
Mario Hüttel 2020-02-12 21:15:51 +01:00
parent d095e26c9e
commit 94b59918fc
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ static void SetSysClock(void)
RCC->CFGR |= RCC_CFGR_SW_PLL;
/* Wait till the main PLL is used as system clock source */
while ((RCC->CFGR & (uint32_t)RCC_CFGR_SWS ) != RCC_CFGR_SWS_PLL);
while ((RCC->CFGR & (uint32_t)RCC_CFGR_SWS ) != RCC_CFGR_SWS_PLL)
{
}
}