[][src]Enum rsl10_pac::crc::crc_value::CURRENT_CRC_A

#[repr(u32)]
pub enum CURRENT_CRC_A {
    CRC_CCITT_INIT_VALUE,
    CRC_32_INIT_VALUE,
}

CRC generator value: Write 0xFFFFFFF (32) or 0xFFFF (CCITT) to initialize the CRC, read provides the current CRC value.

Value on reset: 65535

Variants

CRC_CCITT_INIT_VALUE

65535: Initial value for the CRC CCITT calculation

CRC_32_INIT_VALUE

4294967295: Initial value for the CRC 32 calculation

Trait Implementations

impl Clone for CURRENT_CRC_A[src]

impl Copy for CURRENT_CRC_A[src]

impl Debug for CURRENT_CRC_A[src]

impl From<CURRENT_CRC_A> for u32[src]

impl PartialEq<CURRENT_CRC_A> for CURRENT_CRC_A[src]

impl StructuralPartialEq for CURRENT_CRC_A[src]

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.