dot15d4 0.1.2

IEEE 802.15.4 implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(any(test, feature = "std")), no_std)]

#[macro_use]
pub(crate) mod utils;

pub use dot15d4_frame as frame;

pub mod csma;
pub mod phy;
pub mod sync;
pub mod time;