ezsp 6.0.1

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
//! Types used in the `EZSP` protocol.

pub use self::source_route_discovery_mode::SourceRouteDiscoveryMode;
pub use self::variable_length_u32::VariableLengthU32;

mod source_route_discovery_mode;
mod variable_length_u32;

/// A vector with a maximum of 255 elements.
pub type ByteSizedVec<T> = heapless::Vec<T, { u8::MAX as usize }, u8>;