freertos-rust 0.2.0

Create to use FreeRTOS in rust projects. The freertos-cargo-build crate can be used to build and link FreeRTOS from source inside build.rs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use core::cell::UnsafeCell;
pub use core::cmp::*;
pub use core::fmt;
pub use core::marker::PhantomData;
pub use core::mem;
pub use core::ops::{Deref, DerefMut};

pub use alloc::boxed::Box;
pub use alloc::string::*;
pub use alloc::sync::{Arc, Weak};
pub use alloc::vec::Vec;