vexide_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! Low level core functionality for [`vexide`](https://crates.io/crates/vexide).
//! The core crate is used in all other crates in the vexide ecosystem.
//!
//! Included in this crate:
//! - Global allocator: [`allocator`]
//! - Competition state handling: [`competition`]
//! - Serial terminal printing: [`io`]
//! - No-std [`Instant`](time::Instant)s: [`time`]
//! - Synchronization primitives: [`sync`]
//! - Program control: [`program`]

#![no_std]
#![feature(never_type)]

extern crate alloc;

#[cfg(target_vendor = "vex")]
pub mod allocator;
pub mod backtrace;
pub mod competition;
pub mod float;
pub mod fs;
pub mod io;
pub mod os;
pub mod path;
pub mod program;
pub mod sync;
pub mod time;