use serial;
/// Maximum lenght of a complete response message from the instrument
pub const MAX_STR_LEN: usize = 32;
/// Maximum lenght of a string response by the driver
pub const MAX_STR_RESPONSE_LEN: usize = 60;
/// Lenght of the Response code (ACK or NAK)
pub const ACKNAK_LEN: usize = 3;
/// Lenght of the address string (such as 253)
pub const ADDR_LEN: usize = 3;
pub type ReadError<S> = Error;
pub type WriteError<S> = Error;