jefftenney / LPTIM-Tick-U5

FreeRTOS Tick/Tickless via LPTIM for STM32U
3 stars 3 forks source link

LPTIM-Tick-U5

FreeRTOS Tick/Tickless via LPTIM in STM32U

Use LPTIM for the FreeRTOS tick instead of the SysTick Timer for ultra-low-power applications.

This repository demonstrates adaptation of the lptimTick.c gist to the STM32U series MCUs. The specific target platform is the ST B-U585I-IOT02A (STM32U585). The project uses STM32CubeIDE and its integrated code-generation tool (STM32CubeMX). However, lptimTick.c is compatible with any toolchain supported by FreeRTOS.

For a thorough evaluation, this project can be built without tickless idle, with the default tickless idle, or with the custom tickless idle provided by lptimTick.c. See branches for additional evaluation options.


B-U585I-IOT02A Demo

Press the blue button to cycle between tests:

  1. Maintain kernel time only. LED blinks every 5 seconds.
  2. Validate tick timing. LED blinks every 2 seconds.
  3. Stress test tick timing. LED blinks every second.

Tests 2 and 3 display live test results to a serial terminal. Connect to the STLink Virtual COM Port at 115200 8N1. Additionally, the LED blinks twice (instead of just once) in case of test failure.

Test Results

Current readings shown are averages, not including the LED

With lptimTick.c (configUSE_TICKLESS_IDLE 2)

Default tickless idle (configUSE_TICKLESS_IDLE 1)

Tickless disabled (configUSE_TICKLESS_IDLE 0)