Home
last modified time | relevance | path

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

/hal_stm32-3.7.0/stm32cube/stm32h7rsxx/soc/
Dsystem_stm32h7rsxx.c198 float_t pllfracn, pllvco; in SystemCoreClockUpdate() local
223pllfracn = (float_t)(uint32_t)(((RCC->PLL1FRACR & RCC_PLL1FRACR_FRACN)>> RCC_PLL1FRACR_FRACN_Pos)); in SystemCoreClockUpdate()
227 pllfracn = (float_t)0U; in SystemCoreClockUpdate()
235 …_t)pllm) * ((float_t)(uint32_t)(RCC->PLL1DIVR1 & RCC_PLL1DIVR1_DIVN) + (pllfracn/(float_t)0x2000) … in SystemCoreClockUpdate()
239 …_t)pllm) * ((float_t)(uint32_t)(RCC->PLL1DIVR1 & RCC_PLL1DIVR1_DIVN) + (pllfracn/(float_t)0x2000) … in SystemCoreClockUpdate()
245 …_t)pllm) * ((float_t)(uint32_t)(RCC->PLL1DIVR1 & RCC_PLL1DIVR1_DIVN) + (pllfracn/(float_t)0x2000) … in SystemCoreClockUpdate()
/hal_stm32-3.7.0/stm32cube/stm32h7rsxx/drivers/src/
Dstm32h7rsxx_hal_rcc.c2100 uint32_t pllfracn; in RCC_PLL1_GetVCOOutputFreq() local
2119 pllfracn = (RCC->PLL1FRACR & RCC_PLL1FRACR_FRACN) >> RCC_PLL1FRACR_FRACN_Pos; in RCC_PLL1_GetVCOOutputFreq()
2123 pllfracn = 0U; in RCC_PLL1_GetVCOOutputFreq()
2158 return ((pllsrc / pllm) * (plln + (pllfracn / 0x2000U))); in RCC_PLL1_GetVCOOutputFreq()
2172 uint32_t pllfracn; in RCC_PLL2_GetVCOOutputFreq() local
2191 pllfracn = (RCC->PLL2FRACR & RCC_PLL2FRACR_FRACN) >> RCC_PLL2FRACR_FRACN_Pos; in RCC_PLL2_GetVCOOutputFreq()
2195 pllfracn = 0U; in RCC_PLL2_GetVCOOutputFreq()
2230 return ((pllsrc / pllm) * (plln + (pllfracn / 0x2000U))); in RCC_PLL2_GetVCOOutputFreq()
2244 uint32_t pllfracn; in RCC_PLL3_GetVCOOutputFreq() local
2263 pllfracn = (RCC->PLL3FRACR & RCC_PLL3FRACR_FRACN) >> RCC_PLL3FRACR_FRACN_Pos; in RCC_PLL3_GetVCOOutputFreq()
[all …]
/hal_stm32-3.7.0/stm32cube/stm32wbaxx/drivers/src/
Dstm32wbaxx_hal_rcc.c1755 float_t pllfracn; in RCC_PLL1_GetVCOOutputFreq() local
1780 pllfracn = (float_t)tmp; in RCC_PLL1_GetVCOOutputFreq()
1802 return ((pllsrc / pllm) * (plln + (pllfracn / (float_t)0x2000u))); in RCC_PLL1_GetVCOOutputFreq()