Searched refs:PLLMulTable (Results 1 – 11 of 11) sorted by relevance
/hal_stm32-latest/stm32cube/stm32l0xx/soc/ |
D | system_stm32l0xx.c | 130 const uint8_t PLLMulTable[9] = {3U, 4U, 6U, 8U, 12U, 16U, 24U, 32U, 48U}; variable 229 pllmul = PLLMulTable[(pllmul >> RCC_CFGR_PLLMUL_Pos)]; in SystemCoreClockUpdate()
|
D | system_stm32l0xx.h | 62 extern const uint8_t PLLMulTable[9]; /*!< PLL multipiers table values */
|
/hal_stm32-latest/stm32cube/stm32l1xx/soc/ |
D | system_stm32l1xx.c | 126 const uint8_t PLLMulTable[9] = {3U, 4U, 6U, 8U, 12U, 16U, 24U, 32U, 48U}; variable 232 pllmul = PLLMulTable[(pllmul >> 18)]; in SystemCoreClockUpdate()
|
D | system_stm32l1xx.h | 62 extern const uint8_t PLLMulTable[9]; /*!< PLL multipiers table values */
|
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/src/ |
D | stm32l0xx_hal_rcc_ex.c | 43 extern const uint8_t PLLMulTable[]; 472 pllmul = PLLMulTable[(pllmul >> RCC_CFGR_PLLMUL_Pos)]; in HAL_RCCEx_GetPeriphCLKFreq()
|
D | stm32l0xx_ll_utils.c | 475 pllfreq = PLL_InputFrequency * (PLLMulTable[UTILS_PLLInitStruct->PLLMul >> RCC_CFGR_PLLMUL_Pos]); in UTILS_GetPLLOutputFrequency()
|
D | stm32l0xx_hal_rcc.c | 1240 pllm = PLLMulTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMUL) >> RCC_CFGR_PLLMUL_Pos]; in HAL_RCC_GetSysClockFreq()
|
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/src/ |
D | stm32l1xx_hal_rcc.c | 94 extern const uint8_t PLLMulTable[]; /* Defined in CMSIS (system_stm32l0xx.c)*/ 1102 pllm = PLLMulTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMUL) >> RCC_CFGR_PLLMUL_Pos]; in HAL_RCC_GetSysClockFreq()
|
D | stm32l1xx_ll_utils.c | 469 pllfreq = PLL_InputFrequency * (PLLMulTable[UTILS_PLLInitStruct->PLLMul >> RCC_CFGR_PLLMUL_Pos]); in UTILS_GetPLLOutputFrequency()
|
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/include/ |
D | stm32l1xx_ll_rcc.h | 393 …LLCLK_FREQ(__INPUTFREQ__, __PLLMUL__, __PLLDIV__) ((__INPUTFREQ__) * (PLLMulTable[(__PLLMUL__) >>…
|
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/include/ |
D | stm32l0xx_ll_rcc.h | 592 …LLCLK_FREQ(__INPUTFREQ__, __PLLMUL__, __PLLDIV__) ((__INPUTFREQ__) * (PLLMulTable[(__PLLMUL__) >>…
|