ecc608-linux 0.1.0

A library for accessing the ECC608 chip on Linux
Documentation
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("io error")]
    IoError(#[from] std::io::Error),
    #[error("timeout/retry error")]
    Timeout,
    #[error("crc error expected {}, actual {}", .expected, .actual)]
    Crc { expected: u16, actual: u16 },
    #[error("ecc error {:?}", .0)]
    Ecc(crate::command::EccError),

    #[error("invalid ecc address")]
    InvalidAddress,
}

impl Error {
    pub(crate) fn timeout() -> Self {
        Self::Timeout
    }

    pub(crate) fn crc(expected: u16, actual: u16) -> Self {
        Self::Crc { expected, actual }
    }

    pub(crate) fn ecc(err: crate::command::EccError) -> Self {
        Self::Ecc(err)
    }

    pub(crate) fn invalid_address() -> Self {
        Self::InvalidAddress
    }
}