mirror of
https://github.com/apache/nuttx.git
synced 2026-08-25 15:37:23 +00:00
STM32F0: Ooops Missing semicolon
This commit is contained in:
parent
0d9395588b
commit
55faedb40d
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ void stm32f0_clockconfig(void)
|
|||
|
||||
regval = getreg32(STM32F0_RCC_CFGR);
|
||||
regval &= ~RCC_CFGR_PLLMUL_MASK;
|
||||
regval |= RCC_CFGR_PLLMUL_CLKx6
|
||||
regval |= RCC_CFGR_PLLMUL_CLKx6;
|
||||
putreg32(regval, STM32F0_RCC_CFGR);
|
||||
|
||||
/* Enable the PLL */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue