ezsp 6.0.1

Ember ZNet Serial Protocol
Documentation
//! EZSP-specific protocol identifiers and values.
//!
//! Types in this module model the EZSP layer itself: configuration IDs,
//! policies, decision IDs, status values, value IDs, manufacturing token IDs,
//! and ZLL-specific EZSP values. Ember stack data structures live in
//! [`crate::ember`], while typed frame parameters live in
//! [`crate::parameters`].

pub use stack_version::StackVersion;
pub use status::{Ash, Error, SpiErr, Status};

pub mod mfg_token;
pub mod network;
pub mod policy;

pub mod config;
pub mod decision;
mod stack_version;
mod status;
pub mod value;
pub mod zll;