1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
// ![mod]

//! # RPOS Driver Infrastructure
//! 
//! `rpos_drv` is a collection of structs and traits to build drivers for RPOS.

#[macro_use]
extern crate quick_error;

mod channel;
mod prelude;
mod ring_byte_buffer;
mod errors;

pub use self::prelude::*;
pub use self::channel::*;
pub use self::ring_byte_buffer::RingByteBuffer;