Home
last modified time | relevance | path

Searched refs:predivfactor (Results 1 – 3 of 3) sorted by relevance

/hal_stm32-latest/stm32cube/stm32f3xx/soc/
Dsystem_stm32f3xx.c221 uint32_t tmp = 0, pllmull = 0, pllsource = 0, predivfactor = 0; in SystemCoreClockUpdate() local
241 predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1; in SystemCoreClockUpdate()
245 SystemCoreClock = (HSE_VALUE / predivfactor) * pllmull; in SystemCoreClockUpdate()
250 SystemCoreClock = (HSI_VALUE / predivfactor) * pllmull; in SystemCoreClockUpdate()
260 predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1; in SystemCoreClockUpdate()
262 SystemCoreClock = (HSE_VALUE / predivfactor) * pllmull; in SystemCoreClockUpdate()
/hal_stm32-latest/stm32cube/stm32f0xx/soc/
Dsystem_stm32f0xx.c180 uint32_t tmp = 0, pllmull = 0, pllsource = 0, predivfactor = 0; in SystemCoreClockUpdate() local
198 predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1; in SystemCoreClockUpdate()
203 SystemCoreClock = (HSE_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
209 SystemCoreClock = (HSI48_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
218 SystemCoreClock = (HSI_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/src/
Dstm32f0xx_hal_rcc_ex.c375 uint32_t pllmull = 0U, pllsource = 0U, predivfactor = 0U; in HAL_RCCEx_GetPeriphCLKFreq() local
520 predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1U; in HAL_RCCEx_GetPeriphCLKFreq()
525 frequency = (HSE_VALUE/predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()
531 frequency = (HSI48_VALUE / predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()
538 frequency = (HSI_VALUE / predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()