Trait kernel::hil::crc::CRC [] [src]

pub trait CRC {
    fn get_version(&self) -> u32;
fn compute(&self, data: &[u8], _: CrcAlg) -> ReturnCode;
fn disable(&self); }

Required Methods

Get the version of the CRC unit

Initiate a CRC calculation

Disable the CRC unit until compute() is next called

Implementors