Enum stm32h7xx_hal::device::rtc::calr::CALP_A[][src]

pub enum CALP_A {
    NOCHANGE,
    INCREASEFREQ,
}

Increase frequency of RTC by 488.5 ppm This feature is intended to be used in conjunction with CALM, which lowers the frequency of the calendar with a fine resolution. if the input frequency is 32768 Hz, the number of RTCCLK pulses added during a 32-second window is calculated as follows: (512 * CALP) - CALM. Refer to Section24.3.12: RTC smooth digital calibration.

Value on reset: 0

Variants

NOCHANGE

0: No RTCCLK pulses are added

INCREASEFREQ

1: One RTCCLK pulse is effectively inserted every 2^11 pulses (frequency increased by 488.5 ppm)

Trait Implementations

impl Clone for CALP_A[src]

impl Copy for CALP_A[src]

impl Debug for CALP_A[src]

impl PartialEq<CALP_A> for CALP_A[src]

impl StructuralPartialEq for CALP_A[src]

Auto Trait Implementations

impl Send for CALP_A

impl Sync for CALP_A

impl Unpin for CALP_A

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.