[][src]Struct avr_device::atmega2560::usart1::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub ucsr1a: UCSR1A,
    pub ucsr1b: UCSR1B,
    pub ucsr1c: UCSR1C,
    pub ubrr1: UBRR1,
    pub udr1: UDR1,
    // some fields omitted
}

Register block

Fields

ucsr1a: UCSR1A

0x00 - USART Control and Status Register A

ucsr1b: UCSR1B

0x01 - USART Control and Status Register B

ucsr1c: UCSR1C

0x02 - USART Control and Status Register C

ubrr1: UBRR1

0x04 - USART Baud Rate Register Bytes

udr1: UDR1

0x06 - USART I/O Data Register

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.