Struct stm32f1::stm32f107::can2::RegisterBlock[][src]

#[repr(C)]pub struct RegisterBlock {
    pub mcr: MCR,
    pub msr: MSR,
    pub tsr: TSR,
    pub rfr: [RFR; 2],
    pub ier: IER,
    pub esr: ESR,
    pub btr: BTR,
    pub tx: [TX; 3],
    pub rx: [RX; 2],
    // some fields omitted
}

Register block

Fields

mcr: MCR

0x00 - CAN_MCR

msr: MSR

0x04 - CAN_MSR

tsr: TSR

0x08 - CAN_TSR

rfr: [RFR; 2]

0x0c - CAN_RF0R

ier: IER

0x14 - CAN_IER

esr: ESR

0x18 - CAN_ESR

btr: BTR

0x1c - CAN_BTR

tx: [TX; 3]

0x180 - CAN Transmit cluster

rx: [RX; 2]

0x1b0 - CAN Receive cluster

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.