Skip to main content
Associate
November 7, 2024
Solved

STM32H563: meaning of "PLL1" on STM32CubeMX clock tree?

  • November 7, 2024
  • 1 reply
  • 1197 views

Does anyone know  what is the "PLL 1" parameter on STM32CubeMX clock tree?

I am using STM32H563 Nucleo board and found that there is "PLL1" parameter.

When I change this 0 to 1, SYSCLK was changed a little bit, 125 to 125.000122.

aika_sanshin_fromjp_1-1730968984755.png

aika_sanshin_fromjp_2-1730969103258.png

I would like to know why this change happen, and found the PLL1VCOSEL.

Is this bit relevant to the setting?

Let me know why the change happen and what register related to "PLL1".

aika_sanshin_fromjp_0-1730968887146.png

 

Best answer by Sarra.S

Hello @aika_sanshin_fromjp, welcome to ST Community, 

This change is likely due to the fractional part of the PLL configuration. The relevant register for this setting is the RCC_PLL1FRACR (RCC PLL1 Fractional Divider Register, check section 11.8.11 in RM). The fractional part of the PLL configuration allows for fine-tuning of the output frequency, which can result in very small changes in the SYSCLK frequency.

1 reply

Sarra.SBest answer
ST Employee
November 7, 2024

Hello @aika_sanshin_fromjp, welcome to ST Community, 

This change is likely due to the fractional part of the PLL configuration. The relevant register for this setting is the RCC_PLL1FRACR (RCC PLL1 Fractional Divider Register, check section 11.8.11 in RM). The fractional part of the PLL configuration allows for fine-tuning of the output frequency, which can result in very small changes in the SYSCLK frequency.

Associate
November 28, 2024

Hello, @Sarra.S .
Thank you for the answer. I understand the setting. 
Thank you so much!