R3
Real-Time Operating System

Try it on Repl.it

R3 is a proof-of-concept of a static RTOS that utilizes Rust's compile-time function evaluation mechanism for static configuration (creation of kernel objects and memory allocation).

Features

Example

```rust

![feature(asm)]

![feature(constfntrait_bound)]

![feature(constmutrefs)]

![feature(constfnfnptrbasics)]

![no_std]

![no_main]

// ----------------------------------------------------------------

// Instantiate the Armv7-M port use r3portarm_m as port;

port::useport!(unsafe struct System); port::usert!(unsafe System); port::usesysticktickful!(unsafe impl PortTimer for System);

impl port::ThreadingOptions for System {}

impl port::SysTickOptions for System { // STMF401 default clock configuration // SysTick = AHB/8, AHB = HSI (internal 16-MHz RC oscillator) const FREQUENCY: u64 = 2000000; }

// ----------------------------------------------------------------

use r3::kernel::{Task, cfg::CfgBuilder};

struct Objects { task: Task, }

// Instantiate the kernel, allocate object IDs const COTTAGE: Objects = r3::build!(System, configure_app => Objects);

const fn configureapp(b: &mut CfgBuilder) -> Objects { System::configuresystick(b);

Objects {
    task: Task::build()
        .start(task_body)
        .priority(2)
        .active(true)
        .finish(b),
}

}

fn taskbody(: usize) { // ... } ```

Explore the examples directory for example projects.

Prerequisites

You need a Nightly Rust compiler. This project is heavily reliant on unstable features, so it might or might not work with a newer compiler version. See the file rust-toolchain to find out which compiler version this project is currently tested with.

You also need to install Rust's cross-compilation support for your target architecture. If it's not installed, you will see a compile error like this:

error[E0463]: can't find crate for `core` | = note: the `thumbv7m-none-eabi` target may not be installed

In this case, you need to run rustup target add thumbv7m-none-eabi.