[][src]Struct esp8266::timer::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub frc1_load: Reg<FRC1_LOAD_SPEC>,
    pub frc1_count: Reg<FRC1_COUNT_SPEC>,
    pub frc1_ctrl: Reg<FRC1_CTRL_SPEC>,
    pub frc1_int: Reg<FRC1_INT_SPEC>,
    pub frc2_load: Reg<FRC2_LOAD_SPEC>,
    pub frc2_count: Reg<FRC2_COUNT_SPEC>,
    pub frc2_ctrl: Reg<FRC2_CTRL_SPEC>,
    pub frc2_int: Reg<FRC2_INT_SPEC>,
    pub frc2_alarm: Reg<FRC2_ALARM_SPEC>,
    // some fields omitted
}

Register block

Fields

frc1_load: Reg<FRC1_LOAD_SPEC>

0x00 - the load value into the counter

frc1_count: Reg<FRC1_COUNT_SPEC>

0x04 - the current value of the counter. It is a decreasingcounter.

frc1_ctrl: Reg<FRC1_CTRL_SPEC>

0x08 - FRC1_CTRL

frc1_int: Reg<FRC1_INT_SPEC>

0x0c - FRC1_INT

frc2_load: Reg<FRC2_LOAD_SPEC>

0x20 - the load value into the counter

frc2_count: Reg<FRC2_COUNT_SPEC>

0x24 - the current value of the counter. It is a increasingcounter.

frc2_ctrl: Reg<FRC2_CTRL_SPEC>

0x28 - FRC2_CTRL

frc2_int: Reg<FRC2_INT_SPEC>

0x2c - FRC2_INT

frc2_alarm: Reg<FRC2_ALARM_SPEC>

0x30 - the alarm value for the counter

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.