Go to file
Chris Copeland c4abb96de1
refactor MPU interface, simplify start and unify creation of idle task
2023-10-10 23:09:58 -07:00
arch refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
cxx refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
examples refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
include/rt refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
rust refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
src refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
.clang-format BreakAfterAttributes: Leave 2023-09-19 22:42:54 -07:00
.dockerignore add docker setup 2022-08-02 02:21:14 -07:00
.gitignore add rust interfaces and examples 2023-07-30 20:52:18 -07:00
.rustfmt.toml add rust interfaces and examples 2023-07-30 20:52:18 -07:00
Cargo.toml bump rust version to 0.0.6 2023-09-23 20:45:38 -07:00
Dockerfile add C++ interfaces 2023-07-15 22:46:40 -07:00
LICENSE add apache v2 license 2018-09-28 00:50:06 -07:00
README.md add top-level and per-arch README.md 2023-09-23 20:39:28 -07:00
SConstruct refactor MPU interface, simplify start and unify creation of idle task 2023-10-10 23:09:58 -07:00
docker.bash remove docker username argument 2022-12-24 16:36:54 -08:00
test.bash remove newtask from test script 2023-08-26 00:53:28 -07:00

README.md

rt

rt is a real-time operating system capable of full preemption.

rt provides many familiar synchronization interfaces and implements them with atomics for high performance and preemptibility. rt's non-blocking interfaces can be used safely in both tasks and interrupts, and it does not rely on disabling interrupts to implement synchronization. On architectures without hardware support for atomics, interrupt masking is used to provide an interface for atomics with very short gaps in interrupt availability.