Home
last modified time | relevance | path

Searched refs:pll2mul (Results 1 – 2 of 2) sorted by relevance

/hal_stm32-latest/stm32cube/stm32f1xx/drivers/src/
Dstm32f1xx_hal_rcc_ex.c392 uint32_t pll2mul = 0U, pll3mul = 0U, prediv2 = 0U; in HAL_RCCEx_GetPeriphCLKFreq() local
435 pll2mul = ((RCC->CFGR2 & RCC_CFGR2_PLL2MUL) >> RCC_CFGR2_PLL2MUL_Pos) + 2; in HAL_RCCEx_GetPeriphCLKFreq()
436 pllclk = (uint32_t)((((HSE_VALUE / prediv2) * pll2mul) / prediv1) * pllmul); in HAL_RCCEx_GetPeriphCLKFreq()
Dstm32f1xx_hal_rcc.c1097 uint32_t prediv2 = 0U, pll2mul = 0U; in HAL_RCC_GetSysClockFreq() local
1127 pll2mul = ((RCC->CFGR2 & RCC_CFGR2_PLL2MUL) >> RCC_CFGR2_PLL2MUL_Pos) + 2; in HAL_RCC_GetSysClockFreq()
1128 …pllclk = (uint32_t)(((uint64_t)HSE_VALUE * (uint64_t)pll2mul * (uint64_t)pllmul) / ((uint64_t)pred… in HAL_RCC_GetSysClockFreq()