STM32 Timer Interrupt HAL Example – Timer Mode LAB

In this tutorial, we’ll discuss how to configure the STM32 timer module to generate timer interrupts with a couple of example projects (Timer Mode). You’ll go through step-by-step HAL example configurations to initialize all the required hardware peripherals. Then, we’ll write simple application code to test the hardware functionalities. And also we’ll see how to calculate the timer preload value to get the desired output time interval exactly. without further ado, let’s get started!

Previous TutorialPrevious TutorialTutorial 13Next TutorialNext Tutorial
 STM32 Timers – Timer Mode Interrupt LAB 
 STM32 Course Home Page ???? 

Table of Contents

  1. STM32 Timer Calculation & Equation Formula
  2. STM32 Timer Interrupt Example (LAB)
  3. STM32 Timer Interrupt Example Project (Steps)
  4. STM32 Timer Interrupt Example Code in CubeMX IDE
  5. Testing The STM32 Timer Example Project
  6. STM32 Timer Fine-Timing Experiment
  7. Using STM32 Timer Interrupt Calculator
  8. Wrap Up

STM32 Timer Calculation & Equation Formula

In this LAB, we’ll set up a general-purpose timer module to operate in timer mode. We’ll set the overflow time interval to the desired value using the equation below. And toggle an LED in the interrupt service routine (ISR) for the timer overflow event.

As you can see, the output time interval is determined by the Prescaler value, the clock frequency, and the timer auto-reload register’s value. Given that the blue pill board can run @ up to 72MHz, so let’s set the frequency to 72Mz. Now, we can choose a value for the Prescaler then put in the desired TOUT and solve for the auto-reload register’s value.

In LAB7, we’ll set our desired output time interval to be 100ms. We’ll toggle the LED once each 100ms and we’d like to set up the timer interrupt to give us this time interval. So, from the above equation, we can set the FCLK to be 72MHz. And let the Prescaler be 999. Now, the only unknown is the auto-reload (ARR) value. By solving for it, we’ll get 7199.


STM32 Timer Interrupt Example (LAB)

LAB Number7
LAB TitleTimer Mode Periodic Event
  • Configure the general-purpose timer (TIM2) to operate in timer mode
  • Set The Prescaler, and the Preload value so that the output Time interval is 100ms
  • Toggle an output pin (LED) each 100ms in the timer overflow ISR
  • Measure and verify the output signal’s timing

STM32 Timer Interrupt Example Project (Steps)

Step1: Open CubeMX & Create New Project

STM32 CubeMX Create New Project

Step2: Choose The Target MCU & Double-Click Its Name

STM32 CubeMX Choose The Part Step

Step3: Click On The Pin You Want To Configure As An Output & Select Output Option

Let it be B13 pin for example! (The onBoard LED Pin)

Step4: Configure Timer2 Peripheral

As we’ve calculated earlier, the Prescaler will be 999, and the Preload value will be 7199. And the timer module will be clocked at the internal clock frequency.

Step5: Enable The Timer Interrupt Signal In NVIC Tab

STM32 Timer HAL Interrupt Example Tutorial - STM32 Timer Explained

Step6: Set The RCC External Clock Source

STM32 RCC External Clock Selection CubeMX

Step7: Go To The Clock Configuration

Step8: Set The System Clock To Be 72MHz Or Whatever You Want

STM32 Clock Tree Configuration CubeMX

Step9: Name & Generate The Project Initialization Code For CubeIDE or The IDE You’re Using

Then, open the project in the IDE you’re using. And head over to the main.c file. So we can start writing the application code and have a look at the initialization code generated by the STM32 CubeMX tool.


STM32 Timer Interrupt Example Code in CubeMX IDE

Here is the generated initialization code in the main.c file

Now, the application we’re currently developing is an LED toggle in the ISR for the timer module. So, open the stm32f1xx_it.c file to find the timer interrupt handler, which is this function TIM2_IRQHandler(). Hover over the HAL_TIM_IRQHandler() function and right-click to navigate to its implementation.

After navigating to the timer interrupt handler routine, you’ll find the following implementation. In this code, we’re searching for the callback function’s name that gets called when an overflow interrupt occurs. You can notice that all sources share the same interrupt signal output compare match, overflow, input capture, etc.

Now, we’ve got the callback function’s name that gets called whenever timer overflow occurs. It’s HAL_TIM_PeriodElapsedCallback(). So, we’ll write our own implementation for it in the application file ( main.c). And a mention-worthy point is that you also have to enable (start) the timer so it gets clocked and starts counting, otherwise, it’ll remain IDLE.

Full LAB Code (main.c)

Build & Flash The Code And Let’s Test The Results!


Testing The STM32 Timer Example Project

Step0: Refer To The Blue Pill Board Schematic & Pinout

Step1: Connect The ST-Link To The USB Port & SWD Pins On Board

STM32 GPIO HAL Led Blinking

Step2: Click The Debug Button To Compile The Code & Flash It To The Board & Start A Debugging Session

Step3: You Can Stop The Debugging Session Or Keep It Going. But You Need To Restart The MCU Once To Run The New Application At The Booting Process.

The Results of This LAB

Test Video

Output Signal On My DSO

It’s a perfect 100ms time interval.

STM32 Timer HAL Interrupt Example


STM32 Timer Fine-Timing Experiment

LAB Number8
LAB TitleTimer Mode Periodic Event (in microseconds)

I’ve also done a couple of other experiments in which “fine” output time intervals are desired (from 50μs down to 1μs). The first of which was to produce a periodic timer interrupt every 50μSec. Hence the FCLK is 72MHz, and the Prescaler is left as 0 which means 1:1, therefore the auto-reload register’s value is found to be 3599 using the timer formula.

Consequently, I changed these values in the code, rebuilt & flashed it. And the result was a clean 50μSec waveform! As you can see in the screenshot below.

STM32 Timer HAL Interrupt Example Code

Obviously, by changing the auto-reload register’s value from 3599 to 359, the output time interval should now be 5μSec. So, I did that, rebuilt & flashed the code. The result was as expected a clean 5μSec time interval as you can see in the screenshot down below.

STM32 Timer HAL Interrupt Example Tutorial

However, I do believe that there is a fundamental limitation for the timing resolution that can be enhanced by reducing the usage of HAL library functions and calling multiple functions in the process of handling various tasks.


Using STM32 Timer Interrupt Calculator

This STM32 Timer Calculator online tool that we’ve built will help you find the optimal prescaler (PSC) and auto-reload (ARR) register values to generate your desired timer interrupt intervals with a click of a button. Give it a try and keep this Embedded Systems Calculators & Utilities page in your bookmarks to help you find these tools much quicker.

Here is an example usage for the STM32 Timer Calculator where I wanted to generate a 10ms time interval using a 72MHz clock source.

STM32-Timer-Calculator-Example-Use

To verify the result, we’ll use the timer formula as usual: TOUT = (ARR+1)(PSC+1)/72MHz = (12×60000)/72000000 = 10ms (Exactly)


Required Parts For Example LABs

All the example code/LABs/projects in the series of tutorials are done using the dev boards below:

QTY#Component Name???? Amazon.com???? eBay.com
2BreadBoardAmazoneBay
1LEDs KitAmazon AmazoneBay
1Resistors KitAmazon AmazoneBay
1Capacitors KitAmazon AmazoneBay & eBay
2Jumper Wires PackAmazon AmazoneBay & eBay
19v Battery or DC Power SupplyAmazon Amazon AmazoneBay
1Micro USB CableAmazoneBay
1Push ButtonsAmazon AmazoneBay

★ Check The Full Course Complete Kit List & LAB Test Equipment Required For Debugging

Download Attachments

You can download all attachment files for this Article/Tutorial (project files, schematics, code, etc..) using the link below. Please consider supporting my work through the various support options listed in the link down below. Every small donation helps to keep this website up and running and ultimately supports our community.


Wrap Up

To conclude this tutorial, we’d like to highlight the fact that the STM32 hardware timers can easily be configured to generate periodic timer interrupt events that we’ll heavily depend on in a later tutorial while making our way to develop real-time systems with STM32 microcontrollers. This tutorial is a fundamental part of our STM32 Series of Tutorials because we’ll use it in many tutorials and projects hereafter. So make sure, you’ve learned all the concepts and implemented the practice examples.

If you’re just getting started with STM32, you need to check out the STM32 Getting Started Tutorial here.

And follow this STM32 Series of Tutorials to learn more about STM32 Microcontrollers Programming.

Previous TutorialPrevious TutorialTutorial 13Next TutorialNext Tutorial
Share This Page With Your Network!
Join Our +25,000 Newsletter Subscribers!

Stay Updated With All New Content Releases. You Also Get Occasional FREE Coupon Codes For Courses & Other Stuff!

Photo of author
Author
Khaled Magdy
Embedded systems engineer with several years of experience in embedded software and hardware design. I work as an embedded SW engineer in the Automotive & e-Mobility industry. However, I still do Hardware design and SW development for DSP, Control Systems, Robotics, AI/ML, and other fields I'm passionate about.
I love reading, writing, creating projects, and teaching. A reader by day and a writer by night, it's my lifestyle. I believe that the combination of brilliant minds, bold ideas, and a complete disregard for what is possible, can and will change the world! I will be there when it happens, will you?

Leave a Comment