#cortex-m #arm #real-time #tasks #rtfm #framework #systems

no-std dev cortex-m-rtfm

Real Time For the Masses (RTFM): a concurrency framework for building real time systems

16 releases

0.5.3 Jun 12, 2020
0.5.1 Nov 19, 2019
0.4.3 Apr 21, 2019
0.4.2 Feb 27, 2019
0.2.1 Jul 29, 2017

#101 in #tasks

Download history 140/week @ 2023-11-20 77/week @ 2023-11-27 18/week @ 2023-12-04 40/week @ 2023-12-11 55/week @ 2023-12-18 22/week @ 2023-12-25 43/week @ 2024-01-08 29/week @ 2024-01-15 25/week @ 2024-01-22 5/week @ 2024-01-29 20/week @ 2024-02-05 66/week @ 2024-02-12 82/week @ 2024-02-19 230/week @ 2024-02-26 119/week @ 2024-03-04

502 downloads per month
Used in fewer than 11 crates

MIT/Apache

95KB
1K SLoC

Rust 1K SLoC // 0.0% comments Shell 276 SLoC // 0.1% comments

DEPRECATED use cortex-m-rtic instead - Real Time For the Masses

RTFM has gone through a name change as per RFC https://github.com/rtic-rs/rfcs/pull/33 and the name will now be Real-Time Interrupt-driven Concurrency (RTIC). A concurrency framework for building real time systems.

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 scheduled to run 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 an 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.

  • This task model is amenable to known WCET (Worst Case Execution Time) analysis and scheduling analysis techniques. (Though we haven't yet developed Rust friendly tooling for that.)

Requirements

  • Rust 1.36.0+

  • Applications must be written using the 2018 edition.

User documentation

API reference

Chat

Join us and talk about RTFM in the Matrix room.

Contributing

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

Acknowledgments

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

References

[^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.

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.

Dependencies

~4MB
~74K SLoC