spinel 0.1.0

Control networking devices using the Spinel protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cfg_if::cfg_if! {
    if #[cfg(feature = "std")] {
        mod hdlc;
        pub use hdlc::HdlcCodec;
    }
}

mod command;
pub(crate) mod datatype;
mod frame;
mod property;

pub use command::Command;
pub use datatype::PackedU32;
pub use frame::{Frame, HdlcLiteFrame, Header};
pub use property::Property;