Struct stm32f1::stm32f107::rtc::RegisterBlock[][src]

#[repr(C)]pub struct RegisterBlock {
    pub crh: CRH,
    pub crl: CRL,
    pub prlh: PRLH,
    pub prll: PRLL,
    pub divh: DIVH,
    pub divl: DIVL,
    pub cnth: CNTH,
    pub cntl: CNTL,
    pub alrh: ALRH,
    pub alrl: ALRL,
}

Register block

Fields

crh: CRH

0x00 - RTC Control Register High

crl: CRL

0x04 - RTC Control Register Low

prlh: PRLH

0x08 - RTC Prescaler Load Register High

prll: PRLL

0x0c - RTC Prescaler Load Register Low

divh: DIVH

0x10 - RTC Prescaler Divider Register High

divl: DIVL

0x14 - RTC Prescaler Divider Register Low

cnth: CNTH

0x18 - RTC Counter Register High

cntl: CNTL

0x1c - RTC Counter Register Low

alrh: ALRH

0x20 - RTC Alarm Register High

alrl: ALRL

0x24 - RTC Alarm Register Low

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, 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.