[][src]Struct stm32f3xx_hal_v2::serial::Serial

pub struct Serial<USART, PINS> { /* fields omitted */ }

Serial abstraction

Implementations

impl<TX, RX> Serial<USART1, (TX, RX)>[src]

pub fn usart1(
    usart: USART1,
    pins: (TX, RX),
    baud_rate: Bps,
    clocks: Clocks,
    apb: &mut APB2
) -> Self where
    TX: TxPin<USART1>,
    RX: RxPin<USART1>, 
[src]

Configures a USART peripheral to provide serial communication

pub fn listen(&mut self, event: Event)[src]

Starts listening for an interrupt event

pub fn unlisten(&mut self, event: Event)[src]

Starts listening for an interrupt event

pub fn split(self) -> (Tx<USART1>, Rx<USART1>)[src]

Splits the Serial abstraction into a transmitter and a receiver half

pub fn free(self) -> (USART1, (TX, RX))[src]

Releases the USART peripheral and associated pins

impl<TX, RX> Serial<USART2, (TX, RX)>[src]

pub fn usart2(
    usart: USART2,
    pins: (TX, RX),
    baud_rate: Bps,
    clocks: Clocks,
    apb: &mut APB1
) -> Self where
    TX: TxPin<USART2>,
    RX: RxPin<USART2>, 
[src]

Configures a USART peripheral to provide serial communication

pub fn listen(&mut self, event: Event)[src]

Starts listening for an interrupt event

pub fn unlisten(&mut self, event: Event)[src]

Starts listening for an interrupt event

pub fn split(self) -> (Tx<USART2>, Rx<USART2>)[src]

Splits the Serial abstraction into a transmitter and a receiver half

pub fn free(self) -> (USART2, (TX, RX))[src]

Releases the USART peripheral and associated pins

impl<TX, RX> Serial<USART3, (TX, RX)>[src]

pub fn usart3(
    usart: USART3,
    pins: (TX, RX),
    baud_rate: Bps,
    clocks: Clocks,
    apb: &mut APB1
) -> Self where
    TX: TxPin<USART3>,
    RX: RxPin<USART3>, 
[src]

Configures a USART peripheral to provide serial communication

pub fn listen(&mut self, event: Event)[src]

Starts listening for an interrupt event

pub fn unlisten(&mut self, event: Event)[src]

Starts listening for an interrupt event

pub fn split(self) -> (Tx<USART3>, Rx<USART3>)[src]

Splits the Serial abstraction into a transmitter and a receiver half

pub fn free(self) -> (USART3, (TX, RX))[src]

Releases the USART peripheral and associated pins

Auto Trait Implementations

impl<USART, PINS> Send for Serial<USART, PINS> where
    PINS: Send,
    USART: Send
[src]

impl<USART, PINS> Sync for Serial<USART, PINS> where
    PINS: Sync,
    USART: Sync
[src]

impl<USART, PINS> Unpin for Serial<USART, PINS> where
    PINS: Unpin,
    USART: Unpin
[src]

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.