[][src]Struct ambiq_apollo1_pac::uart::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub dr: DR,
    pub rsr: RSR,
    pub fr: FR,
    pub ilpr: ILPR,
    pub ibrd: IBRD,
    pub fbrd: FBRD,
    pub lcrh: LCRH,
    pub cr: CR,
    pub ifls: IFLS,
    pub ier: IER,
    pub ies: IES,
    pub mis: MIS,
    pub iec: IEC,
    // some fields omitted
}

Register block

Fields

dr: DR

0x00 - UART Data Register

rsr: RSR

0x04 - UART Status Register

fr: FR

0x18 - Flag Register

ilpr: ILPR

0x20 - IrDA Counter

ibrd: IBRD

0x24 - Integer Baud Rate Divisor

fbrd: FBRD

0x28 - Fractional Baud Rate Divisor

lcrh: LCRH

0x2c - Line Control High

cr: CR

0x30 - Control Register

ifls: IFLS

0x34 - FIFO Interrupt Level Select

ier: IER

0x38 - Interrupt Enable

ies: IES

0x3c - Interrupt Status

mis: MIS

0x40 - Masked Interrupt Status

iec: IEC

0x44 - Interrupt Clear

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.