Do STM32CubeIDE generate correct System Clock Configuration code for Nucleo-F767ZI?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-05-23 1:34 PM
I'm using Nucleo-F767ZI, I am configuring the 25 kHz PWM signal on pin PD14, TIM4_CH3.
I set up clock source HSI RC 16MHz, HCLK 216 MHz , APB1 peripheral clocks 54 MHz, TIM4 PSC = 0 ARR = 2159 CKD = No Division.
As a result, I get PWM with a frequency of 50 kHz.
When I change RCC_OscInitStruct.PLL.PLLM = 8; on RCC_OscInitStruct.PLL.PLLM = 16; in main.c file the frequency is correct 25 kHz.
Is STM32CubeIDE generating bad code or did I make a mistake somewhere?
Regards, Adam.
- Labels:
-
RCC
-
STM32CubeMX
-
STM32F7 Series
-
TIM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-05-23 2:15 PM
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-05-23 2:50 PM
This means that APB Timer clocks should be used to calculate PWM and not APB peripheral clocks.
Many thanks, Adam.
