[][src]Struct esp8266::uart1::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub uart_fifo: UART_FIFO,
    pub uart_int_raw: UART_INT_RAW,
    pub uart_int_st: UART_INT_ST,
    pub uart_int_ena: UART_INT_ENA,
    pub uart_int_clr: UART_INT_CLR,
    pub uart_clkdiv: UART_CLKDIV,
    pub uart_autobaud: UART_AUTOBAUD,
    pub uart_status: UART_STATUS,
    pub uart_conf0: UART_CONF0,
    pub uart_conf1: UART_CONF1,
    pub uart_lowpulse: UART_LOWPULSE,
    pub uart_highpulse: UART_HIGHPULSE,
    pub uart_rxd_cnt: UART_RXD_CNT,
    pub uart_date: UART_DATE,
    // some fields omitted
}

Register block

Fields

uart_fifo: UART_FIFO

0x00 - UART FIFO,length 128

uart_int_raw: UART_INT_RAW

0x04 - UART INTERRUPT RAW STATE

uart_int_st: UART_INT_ST

0x08 - UART INTERRUPT STATEREGISTERUART_INT_RAW&UART_INT_ENA

uart_int_ena: UART_INT_ENA

0x0c - UART INTERRUPT ENABLE REGISTER

uart_int_clr: UART_INT_CLR

0x10 - UART INTERRUPT CLEAR REGISTER

uart_clkdiv: UART_CLKDIV

0x14 - UART CLK DIV REGISTER

uart_autobaud: UART_AUTOBAUD

0x18 - UART BAUDRATE DETECT REGISTER

uart_status: UART_STATUS

0x1c - UART STATUS REGISTER

uart_conf0: UART_CONF0

0x20 - UART CONFIG0(UART0 and UART1)

uart_conf1: UART_CONF1

0x24 - Set this bit to enable rx time-out function

uart_lowpulse: UART_LOWPULSE

0x28 - UART_LOWPULSE

uart_highpulse: UART_HIGHPULSE

0x2c - UART_HIGHPULSE

uart_rxd_cnt: UART_RXD_CNT

0x30 - UART_RXD_CNT

uart_date: UART_DATE

0x78 - UART HW INFO

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.