[][src]Struct stm32l4xx_hal::serial::Serial

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

Serial abstraction

Methods

impl<PINS> Serial<USART1, PINS>[src]

pub fn usart1(
    usart: USART1,
    pins: PINS,
    baud_rate: Bps,
    clocks: Clocks,
    apb: &mut APB2
) -> Self where
    PINS: Pins<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, PINS)[src]

Releases the USART peripheral and associated pins

impl<PINS> Serial<USART2, PINS>[src]

pub fn usart2(
    usart: USART2,
    pins: PINS,
    baud_rate: Bps,
    clocks: Clocks,
    apb: &mut APB1R1
) -> Self where
    PINS: Pins<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, PINS)[src]

Releases the USART peripheral and associated pins

Auto Trait Implementations

impl<USART, PINS> Send for Serial<USART, PINS> where
    PINS: Send,
    USART: Send

impl<USART, PINS> Sync for Serial<USART, PINS> where
    PINS: Sync,
    USART: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self