[][src]Struct rsl10_pac::crc::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub crc_ctrl: CRC_CTRL,
    pub crc_value: CRC_VALUE,
    pub crc_add_1: CRC_ADD_1,
    pub crc_add_8: CRC_ADD_8,
    pub crc_add_16: CRC_ADD_16,
    pub crc_add_24: CRC_ADD_24,
    pub crc_add_32: CRC_ADD_32,
    pub crc_final: CRC_FINAL,
}

Register block

Fields

crc_ctrl: CRC_CTRL

0x00 - CRC Generator Control

crc_value: CRC_VALUE

0x04 - CRC Generator Current Value

crc_add_1: CRC_ADD_1

0x08 - CRC Generator - Add 1 Bit

crc_add_8: CRC_ADD_8

0x0c - CRC Generator - Add 1 Byte

crc_add_16: CRC_ADD_16

0x10 - CRC Generator - Add 1 Half-word

crc_add_24: CRC_ADD_24

0x14 - CRC Generator - Add 3 Bytes

crc_add_32: CRC_ADD_32

0x18 - CRC Generator - Add 1 Word

crc_final: CRC_FINAL

0x1c - CRC Generator Final Value

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.