Arduino FreeRTOS Library Save

A FreeRTOS Library for all Arduino ATmega Devices (Uno R3, Leonardo, Mega, etc).

Project README

This is a fork of Richard Barry's FreeRTOS, optimised for the Arduino Microchip ATmega devices.

It has been created to provide access to FreeRTOS capabilities, with full compatibility to the Arduino IDE environment. It does this by keeping hands off almost everything, and only touching the minimum of hardware to be successful.

If you want to use FreeRTOS on the Renesas family of Arduino like the Arduino UNO R4, it is already included in the default Arduino IDE. All that is required is to include the header file Arduino_FreeRTOS.h provided by the Arduino IDE, as follow the information noted below.

Usage & Further Reading

Read the short blog post on Arduino FreeRTOS to get started. And there is another much older post on using FreeRTOS with AVR, which may be useful to read too. There are some further posts I've written on Hackster.IO, but they're essentially the same content.

The canonical source for information is the FreeRTOS Web Site. Within this site, the Getting Started page is very useful. This is the source for FreeRTOS usage (as distinct from installing and using this Arduino Library).

My other AVRfreeRTOS Sourceforge Repository or AVRfreeRTOS Github has plenty of examples, ranging from blink through to a synthesiser.

This library was the genesis of generalised support for the ATmega platform within FreeRTOS, and improvement of the stack depth type management.

Over the past few years FreeRTOS development has become increasingly 32-bit orientated, now including symmetric multiprocessing, with little change or improvement for the 8-bit world. As such I'm treating this FreeRTOS V11.1.0 (updated April 22 2024) as my LTS release.

General

FreeRTOS has a multitude of configuration options, which can be specified from within the FreeRTOSConfig.h file. To keep commonality with all of the Arduino hardware options, some sensible defaults have been selected. Feel free to change these defaults as you gain experience with FreeRTOS.

Normally, the ATmega Watchdog Timer is used to generate 15ms time slices (Ticks). For applications requiring high precision timing, the Ticks can be sourced from a hardware timer or external clock. See chapter Scheduler Tick Sources for the configuration details.

Tasks that suspend or delay before their allocated time slice completes will revert execution back to the Scheduler.

The Arduino delay() function has been redefined to automatically use the FreeRTOS vTaskDelay() function when the delay required is one Tick or longer, by setting configUSE_PORT_DELAY to 1, so that simple Arduino example sketches and tutorials work as expected. If you would like to measure a short millisecond delay of less than one Tick, then preferably use millis() (or with greater granularity use micros()) to achieve this outcome (for example see BlinkWithoutDelay). However, when the delay requested is less than one Tick then the original Arduino delay() function will be automatically selected.

The 8-bit ATmega Timer0 has been added as an option for the experienced user. Please examine the Timer0 source code example to figure out how to use it. Reconfiguring Timer0 for the FreeRTOS Tick will break Arduino millis() and micros() though, as these functions rely on the Arduino IDE configuring Timer0. Example support for the Logic Green hardware using Timer 3 is provided via an open PR.

Stack for the loop() function has been set at 192 Bytes. This can be configured by adjusting the configMINIMAL_STACK_SIZE parameter. If you have stack overflow issues just increase it (within the SRAM limitations of your hardware). Users should prefer to allocate larger structures, arrays, or buffers on the heap using pvPortMalloc(), rather than defining them locally on the stack. Ideally you should not use loop() for your sketches, and then the Idle Task stack size can be reduced down to 92 Bytes which will save some valuable memory.

Memory for the heap is allocated by the normal C malloc() function, wrapped by the FreeRTOS pvPortMalloc() function. This option has been selected because it is automatically adjusted to use the capabilities of each device. Other heap allocation schemes are supported by FreeRTOS, and they can used with some additional configuration.

If you do not need to use FreeRTOS Timer API functions, then they can be disabled. This will remove the need for the Timer Task Stack, saving 85 Bytes of RAM.

Upgrading

Errors

  • Stack Overflow: If any stack (for the loop() or) for any Task overflows, there will be a slow LED blink, with 4 second cycle.
  • Heap Overflow: If any Task tries to allocate memory and that allocation fails, there will be a fast LED blink, with 100 millisecond cycle.

Errata

Testing with the Software Serial library shows some incompatibilities at low baud rates (9600), due to the extended time this library disables the global interrupt. Use the hardware USARTs.

Compatibility

  • ATmega328 @ 16MHz : Arduino UNO R3, Arduino Duemilanove, Arduino Diecimila, etc.
  • ATmega328 @ 16MHz : Adafruit Pro Trinket 5V, Adafruit Metro 328, Adafruit Metro Mini
  • ATmega328 @ 16MHz : Seeed Studio Stalker
  • ATmega328 @ 16MHz : Freetronics Eleven
  • ATmega328 @ 12MHz : Adafruit Pro Trinket 3V
  • ATmega32u4 @ 16MHz : Arduino Leonardo, Arduino Micro, Arduino Yun, Teensy 2.0
  • ATmega32u4 @ 8MHz : Adafruit Flora, Bluefruit Micro
  • ATmega1284p @ 16MHz: Sanguino, WickedDevice WildFire
  • ATmega1284p @ 24.576MHz : Seeed Studio Goldilocks Analogue
  • ATmega2560 @ 16MHz : Arduino Mega, Arduino ADK
  • ATmega2560 @ 16MHz : Seeed Studio ADK

The new megaAVR 0-Series devices (eg. ATmega4809) are not fully compatible with this library. Their Timer configuration is substantially different from previous devices, and forms part of a new avr8x architecture. It may be a while until avr-libc is updated to include support for megaAVR devices, but when that happens further work will be added here.

The Arduino IDE supporting the Arduino UNO R4 already includes FreeRTOS as standard.

Files & Configuration

  • Arduino_FreeRTOS.h : Must always be #include first. It references other configuration files, and sets defaults where necessary.
  • FreeRTOSConfig.h : Contains a multitude of API and environment configurations.
  • FreeRTOSVariant.h : Contains the ATmega specific configurations for this port of FreeRTOS.
  • heap_3.c : Contains the heap allocation scheme based on malloc(). Other schemes are available, but depend on user configuration for specific MCU choice.

PlatformIO

Arduino FreeRTOS is available in the PlatformIO library manager for use in a PlatformIO project.

Watchdog period is configurable using build-flags:

build_flags =
  -DportUSE_WDTO=WDTO_15MS

Code of conduct

See the Code of conduct.

Contributors ✨

All Contributors

Thanks goes to these wonderful people (emoji key):


Phillip Stevens

🚧💻👀📖

Hector Espert

💻

Floessie

💻

Derekduke

💻

Balaji.V

💻📖

John Y. Pazekha

💻📖

Guglielmo Braguglia

💻📖

This project follows the all-contributors specification. Contributions of any kind welcome!

Open Source Agenda is not affiliated with "Arduino FreeRTOS Library" Project. README Source: feilipu/Arduino_FreeRTOS_Library
Stars
805
Open Issues
2
Last Commit
1 week ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating