Top.Mail.Ru

STM32CubeMx. RCC. Clock configuration for STM32 microcontroller.

Hi to all! In one of previous posts I promised to tell about the clock configuration in the STM32CubeMx. So this article is devoted to the RCC and the clock frequencies. We’ll also consider some examples today, so we’ll take the project from the post about the timer configuration as a basis. Let’s open this project and proceed to the “Clock configuration” tab:

STM32 clock configuration

As you see the input clock signal is taken from the internal high-frequency oscillator (16 MHz). Before the clock signal comes to the APB1 bus, it passes through the two clock dividers, which are marked with blue color in the screenshot. So, the APB1 frequency is set to 16 MHz (16 / 1 / 1). When we created the project for timers, we’ve used this value for the period calculating.

Let’s increase the value of APB1 Prescaler and regenerate the project:

APB1 frequency

Now the TIM3 timer frequency is 8 MHz. Let’s look at the RCC configuration function in the main.c file:

void SystemClock_Config(void)
{
	RCC_OscInitTypeDef RCC_OscInitStruct;
	RCC_ClkInitTypeDef RCC_ClkInitStruct;

	__PWR_CLK_ENABLE();

	__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE2);

	RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
	RCC_OscInitStruct.HSIState = RCC_HSI_ON;
	RCC_OscInitStruct.HSICalibrationValue = 6;
	RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
	HAL_RCC_OscConfig(&RCC_OscInitStruct);

	RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_PCLK1;
	RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI;
	RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
	RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
	RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
	HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0);
}

As you see the prescaler value has been changed:

RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;

Please, note that our own code in the timer interrupt handler wasn’t deleted by the STM32CubeMx after the project had been regenerated. The reason is that we put it into the special code section:

/* USER CODE BEGIN 1 */

/* USER CODE END 1 */

Now, let’s compile the project and program the MCU. After that, we’ll see that the led blinking frequency is half as much as the previous frequency. The clock frequency has been reduced due to our changes in the project. As you remember we’ve increased the APB1 prescaler value.

So, this point is clear, now we will configure the external high-frequency oscillator (HSE). First of all, it should be enabled at the “Pinout” tab. Let’s return to the “Clock Configuration” tab and set the TIM3 frequency to the value of 48 MHz. The clock dividers’ proper values are shown in the following picture:

External oscillator

As the 8 MHz oscillator is mounted on the development board, this value should be set in the “Input frequency” box. After programming the microcontroller, we’ll see that the led is blinking three times “faster”. The reason is the increased timer frequency (16 MHz -> 48 MHz).

To conclude this post, I would say that the clock configuration in the STM32CubeMx framework is a very clear process, because it has a very user friendly interface 🙂 Thank you for your attention!

Подписаться
Уведомить о
guest

4 комментариев
Старые
Новые
Межтекстовые Отзывы
Посмотреть все комментарии
rakesh
rakesh
7 лет назад

hello aveal,

thanks a lot for your tutorial.

i followed one of your tutorial on usb mass storage.and got usb mass storage working.but i have confusion for clock configuration here.
i implemented usb mass storage using external clock,but i have implemented my full application on internal clock,my spi is getting clock form internal source, so now i want to switch whole project on external source,so what should i do now?

thanks

Denis
Denis
5 лет назад

Hello gays, when I configurate the RCC clock, there are three options as "Bypass clock source", "Crystal/Ceramic Resonator" & "disable".
So the question is what is the different between “disable” and “Bypass Clock source”? Which one I need to choose for using the internal Clock(HSI or LSI)?
(Of cause "Crystal..." is mean use the external crystal)
Thanks!

4
0
Оставьте комментарий! Напишите, что думаете по поводу статьи.x