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

#[repr(C)]
pub struct RegisterBlock {
    pub frc1_load: FRC1_LOAD,
    pub frc1_count: FRC1_COUNT,
    pub frc1_ctrl: FRC1_CTRL,
    pub frc1_int: FRC1_INT,
    pub frc2_load: FRC2_LOAD,
    pub frc2_count: FRC2_COUNT,
    pub frc2_ctrl: FRC2_CTRL,
    pub frc2_int: FRC2_INT,
    // some fields omitted
}

Register block

Fields

frc1_load: FRC1_LOAD

0x00 - the load value into the counter

frc1_count: FRC1_COUNT

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

frc1_ctrl: FRC1_CTRL

0x08 - FRC1_CTRL

frc1_int: FRC1_INT

0x0c - FRC1_INT

frc2_load: FRC2_LOAD

0x20 - the load value into the counter

frc2_count: FRC2_COUNT

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

frc2_ctrl: FRC2_CTRL

0x28 - FRC2_CTRL

frc2_int: FRC2_INT

0x2c - FRC2_INT

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.