Universal timers

This tutorial demonstrates how to control an onboard RGB breathing light on a development board using a Universal Timer (TIM3) .

1、software-hardware

2、Brief principle

2.1、Hardware schematic diagram

image-20231122170655624

2.2、Physical connection diagram

image-20231122171109595

2.3、Principle of control

By changing the duty cycle of the PWM signal, the Angle of rotation of the servo is controlled

PWM, short for Pulse width modulation, is a technique that controls the level by adjusting the pulse width of a signal.

Period:the duration of a complete PWM waveform;

Duty cycle:The ratio of the duration of the high level to the cycle time;

Frequency:The inverse of the period is called frequency, which is the number of PWM cycles generated per second;

The timing counting function of TIM3 on the STM32F103ZET6 development board is used

Timer typesUniversal timers
The timer nameTIM2、TIM3、TIM4、TIM5
Number of counter bits16
Counting modeIncrease/decrease/center alignment
Predivision coefficient1-65536
Generating DMA requestsYes
Capture/compare channels4
Complementary outputNo
Clock frequency72MHz(max)
Mount busAPB1

Time base cell

registerFunction
The counter register(TIMx_CNT)The current value of the counter
Predivider register(TIMx_PSC)Set frequency division coefficient (1-65536)
Automatically reload registers(TIMx_ARR)The counter counts the boundary and the overloaded value

Timing formula

T(s)=(ARR+1)(PSC+1)TIM_CLK(Hz)
parametermeaning
T(s)Timing time in seconds
ARRAutomatically reload the value
PSCPredivision coefficient
TIM_CLKThe timer ticks in Hz

Timing time for the project: 10us

T(s)=(ARR+1)(PSC+1)TIM_CLK(Hz)=(9+1)(71+1)72000000(Hz)=0.00001s=10us

3、Engineering configuration

Project Configuration: Prompt for configuration options during STM32CubeIDE project configuration

3.1、Notes

Omitted project configuration: New project, chip selection, project configuration, SYS for pin configuration, RCC configuration, clock configuration, and project configuration content

The project configuration part, which is not omitted, is the key point to configure in this tutorial.

3.2、Pin configuration

You can directly select the corresponding pin number in the pin view, and the corresponding option will appear when the mouse is left clicked

image-20231122151847305

image-20231122152451397

image-20231122151959166

The NVIC option allows you to change the priority

image-20231122181613662

image-20231030191606658

image-20231011102854602

4、Main function

This section mainly introduces the functional code written by users. Detailed code can be opened by yourself in the project file we provide, and enter the Bsp folder to view the source code.

Function analysis

The HAL library functions that were covered in the previous tutorial will not be covered

HAL_TIM_PeriodElapsedCallbackThe timer update interrupt callback function

Function prototypesvoid HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
Functional DescriptionThe timer update interrupt callback function
Input parametershtim:Timer handle address
Return valueNone
NotesThis function is called by HAL_TIM_IRQHandler, which allows you to write specific tasks

Each time the timer interrupt callback is entered, the timer's pwm_val variable is incremented by 1 and compared against the pwm_set variable in the main loop.

If pwm_val < pwm_set, RGB lights off; If pwm_val > pwm_set, RGB light is on.

Main loop function

In the main loop function, the comparison value of the interrupt callback function is changed by controlling the increment and decrement of the pwm_set variable to achieve different duty cycles per unit time.

5、Experimental phenomenon

After downloading the program successfully, press the RESET button of the development board to observe the phenomenon of the development board

phenomenon:

left and right RGB lights:display the purple color, which goes from bright to dark, and from dark to bright.

image-20231123183723053