Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers
Find a file
dependabot[bot] ae90fb6bbf
chore(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-15 16:03:36 +00:00
.cargo Fix config pickup behaviour so that both examples and usage-examples build 2023-04-16 13:08:46 +02:00
.github chore(deps): bump actions/cache from 4 to 5 2025-12-15 16:03:36 +00:00
book book: Fix building with mdBook v0.5 2025-11-19 22:01:52 +00:00
ci/expected ci: Generate and store example filesizes 2025-07-02 18:34:20 +00:00
examples chore: replace deprecated bare-metal with critical-section 2025-11-12 18:43:44 +00:00
rtic chore: changelog entry 2025-11-12 18:43:44 +00:00
rtic-common Release all crates 2025-06-22 09:34:16 +00:00
rtic-macros Update rtic-macros/src/codegen/shared_resources.rs 2025-12-03 19:57:58 +00:00
rtic-monotonics Support external SYST clock source 2025-11-11 07:57:47 +00:00
rtic-sync put the size check of the channel constructor in explicit const block 2025-12-03 19:45:29 +00:00
rtic-time Release all crates 2025-06-22 09:34:16 +00:00
xtask CI: xtask: Resolve warning about mixed lifetimes 2025-09-17 20:37:07 +02:00
.gitattributes CHANGELOG merge=union 2022-02-15 19:51:54 +01:00
.gitignore gitignore: Ignore QEMU logs: Updated filenames 2025-06-18 19:14:52 +00:00
Cargo.toml Fixed new TAIT requirement and release v2.0.1 of RTIC 2023-07-25 08:16:13 +00:00
check-book.sh Add check-book.sh script 2023-05-11 19:20:58 +02:00
CNAME Rename RTFM to RTIC 2020-06-11 17:18:29 +00:00
CONTRIBUTING.md contributing: Add note about changelog entries 2025-06-18 18:51:24 +00:00
LICENSE-APACHE initial commit 2017-03-05 00:29:08 -05:00
LICENSE-CC-BY-SA v0.4.0 2018-11-03 17:16:55 +01:00
LICENSE-MIT Rename RTFM to RTIC 2020-06-11 17:18:29 +00:00
README.md docs: README: Rework how to use cargo xtask 2025-06-18 18:51:24 +00:00
README_ru.md update russian book 2021-08-03 22:40:33 +03:00
redirect.html fix redirects and CNAME 2019-09-15 21:40:40 +02:00
rust-toolchain.toml Bump ESP versions 2025-04-07 21:11:21 +00:00

Real-Time Interrupt-driven Concurrency

The hardware accelerated Rust RTOS

A concurrency framework for building real-time systems.

crates.io docs.rs book matrix Meeting notes

Features

  • Tasks as the unit of concurrency 1. Tasks can be event triggered (fired in response to asynchronous stimuli) or spawned by the application on demand.

  • Message passing between tasks. Specifically, messages can be passed to software tasks at spawn time.

  • A timer queue 2. Software tasks can be delayed or scheduled to continue running at some time in the future. This feature can be used to implement periodic tasks.

  • Support for prioritization of tasks and, thus, preemptive multitasking.

  • Efficient and data race free memory sharing through fine-grained priority based critical sections 1.

  • Deadlock free execution guaranteed at compile time. This is a stronger guarantee than what's provided by the standard Mutex abstraction.

  • Minimal scheduling overhead. The task scheduler has minimal software footprint; the hardware does the bulk of the scheduling.

  • Highly efficient memory usage: All the tasks share a single call stack and there's no hard dependency on a dynamic memory allocator.

  • All Cortex-M devices are fully supported.

  • Most RISC-V devices are supported. Refer to the RTIC book to learn more about RISC-V backends, their particularities, and their limitations.

  • This task model is amenable to known WCET (Worst Case Execution Time) analysis and scheduling analysis techniques.

User documentation

Documentation for the development version.

API reference

Community provided examples repo

Chat

Join us and talk about RTIC in the Matrix room.

Weekly meeting minutes can be found over at RTIC HackMD

Contributing

New features and big changes should go through the RFC process in the dedicated RFC repository.

Running tests locally

To check all tests locally, make sure you got QEMU (and ESP32 QEMU if so desired) then:

$ cargo xtask ci

To only format code before PR (included in ci above):

$ cargo xtask fmt

Clippy lints:

$ cargo xtask clippy

and so on. See cargo xtask --help for all options.

Acknowledgments

This crate is based on the Real-Time For the Masses language created by the Embedded Systems group at Luleå University of Technology, led by Prof. Per Lindgren.

References

License

All source code (including code snippets) is licensed under either of

at your option.

The written prose contained within the book is licensed under the terms of the Creative Commons CC-BY-SA v4.0 license (LICENSE-CC-BY-SA or https://creativecommons.org/licenses/by-sa/4.0/legalcode).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.


  1. Eriksson, J., Häggström, F., Aittamaa, S., Kruglyak, A., & Lindgren, P. (2013, June). Real-time for the masses, step 1: Programming API and static priority SRP kernel primitives. In Industrial Embedded Systems (SIES), 2013 8th IEEE International Symposium on (pp. 110-113). IEEE. ↩︎

  2. Lindgren, P., Fresk, E., Lindner, M., Lindner, A., Pereira, D., & Pinho, L. M. (2016). Abstract timers and their implementation onto the arm cortex-m family of mcus. ACM SIGBED Review, 13(1), 48-53. ↩︎