ashv2 1.2.4

Implementation of the Asynchronous Serial Host (ASH) protocol by Silicon Labs.
Documentation
1
2
3
4
5
6
7
8
9
//! Header types for frames that do not have a constant header value.

pub use ack::Ack;
pub use data::Data;
pub use nak::Nak;

mod ack;
mod data;
mod nak;