[][src]Struct stm32f1xx_hal::stm32::rtc::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub crh: Reg<u32, _CRH>,
    pub crl: Reg<u32, _CRL>,
    pub prlh: Reg<u32, _PRLH>,
    pub prll: Reg<u32, _PRLL>,
    pub divh: Reg<u32, _DIVH>,
    pub divl: Reg<u32, _DIVL>,
    pub cnth: Reg<u32, _CNTH>,
    pub cntl: Reg<u32, _CNTL>,
    pub alrh: Reg<u32, _ALRH>,
    pub alrl: Reg<u32, _ALRL>,
}

Register block

Fields

crh: Reg<u32, _CRH>

0x00 - RTC Control Register High

crl: Reg<u32, _CRL>

0x04 - RTC Control Register Low

prlh: Reg<u32, _PRLH>

0x08 - RTC Prescaler Load Register High

prll: Reg<u32, _PRLL>

0x0c - RTC Prescaler Load Register Low

divh: Reg<u32, _DIVH>

0x10 - RTC Prescaler Divider Register High

divl: Reg<u32, _DIVL>

0x14 - RTC Prescaler Divider Register Low

cnth: Reg<u32, _CNTH>

0x18 - RTC Counter Register High

cntl: Reg<u32, _CNTL>

0x1c - RTC Counter Register Low

alrh: Reg<u32, _ALRH>

0x20 - RTC Alarm Register High

alrl: Reg<u32, _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> 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.