diff options
author | 2023-12-04 18:18:42 +0100 | |
---|---|---|
committer | 2023-12-04 18:18:42 +0100 | |
commit | 21191e1b234c9e62cc234ddb7cbe32e5f79671eb (patch) | |
tree | 1321d87664618ba1ff9df9d42ad9ed1787dce157 | |
parent | c227a71d243db6d539f3c64e3b4bb1b3ab282693 (diff) | |
download | rtic-21191e1b234c9e62cc234ddb7cbe32e5f79671eb.tar.gz rtic-21191e1b234c9e62cc234ddb7cbe32e5f79671eb.tar.zst rtic-21191e1b234c9e62cc234ddb7cbe32e5f79671eb.zip |
Fix small error in readme (#856)
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,8 +19,8 @@ A concurrency framework for building real-time systems. - **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. +- **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**. |