//! Asynchronous Serial Host version 2 (`ASHv2`)
//!
//! This library implements the Asynchronous Serial Host version 2, `ASHv2` for short.
//!
//! You can find the protocol's definition on [siliconlabs.com](https://www.silabs.com/documents/public/user-guides/ug101-uart-gateway-protocol-reference.pdf).
//!
//! This library is free software and is not affiliated with Silicon Labs.
pub use ;
pub use BaudRate;
pub use ;
pub use Payload;
pub use HexSlice;
use crateData;
/// Maximum payload size in bytes.
pub const MAX_PAYLOAD_SIZE: usize = MAX_PAYLOAD_SIZE;
const VERSION: u8 = 0x02;