Home
last modified time | relevance | path

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

/lk-master/external/platform/stm32f0xx/CMSIS/
A Dsystem_stm32f0xx.c262 uint32_t tmp = 0, pllmull = 0, pllsource = 0, predivfactor = 0; in SystemCoreClockUpdate() local
280 predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1; in SystemCoreClockUpdate()
285 SystemCoreClock = (HSE_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
291 SystemCoreClock = (HSI48_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
300 SystemCoreClock = (HSI_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/
A Dstm32f0xx_hal_rcc_ex.c393 uint32_t pllmull = 0U, pllsource = 0U, predivfactor = 0U; in HAL_RCCEx_GetPeriphCLKFreq() local
538 predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1U; in HAL_RCCEx_GetPeriphCLKFreq()
543 frequency = (HSE_VALUE/predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()
549 frequency = (HSI48_VALUE / predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()
556 frequency = (HSI_VALUE / predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()

Completed in 3 milliseconds