Struct Serial

Source
pub struct Serial<USART> { /* private fields */ }
Expand description

Serial abstraction

Implementations§

Source§

impl Serial<USART1>

Source

pub fn usart1<PINS>( usart: USART1, pins: PINS, config: Config, rcc: &mut Rcc, ) -> Result<Self, InvalidConfig>
where PINS: Pins<USART1>,

Source

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

Starts listening for an interrupt event

Source

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

Stop listening for an interrupt event

Source

pub fn clear_irq(&mut self, event: Event)

Clears interrupt flag

Source

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

Source

pub fn release(self) -> USART1

Source§

impl Serial<USART2>

Source

pub fn usart2<PINS>( usart: USART2, pins: PINS, config: Config, rcc: &mut Rcc, ) -> Result<Self, InvalidConfig>
where PINS: Pins<USART2>,

Source

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

Starts listening for an interrupt event

Source

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

Stop listening for an interrupt event

Source

pub fn clear_irq(&mut self, event: Event)

Clears interrupt flag

Source

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

Source

pub fn release(self) -> USART2

Source§

impl Serial<USART3>

Source

pub fn usart3<PINS>( usart: USART3, pins: PINS, config: Config, rcc: &mut Rcc, ) -> Result<Self, InvalidConfig>
where PINS: Pins<USART3>,

Source

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

Starts listening for an interrupt event

Source

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

Stop listening for an interrupt event

Source

pub fn clear_irq(&mut self, event: Event)

Clears interrupt flag

Source

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

Source

pub fn release(self) -> USART3

Trait Implementations§

Source§

impl<USART> Write for Serial<USART>
where Serial<USART>: Write<u8>,

Source§

fn write_str(&mut self, s: &str) -> Result

Writes a string slice into this writer, returning whether the write succeeded. Read more
1.1.0 · Source§

fn write_char(&mut self, c: char) -> Result<(), Error>

Writes a char into this writer, returning whether the write succeeded. Read more
1.0.0 · Source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Glue for usage of the write! macro with implementors of this trait. Read more
Source§

impl Read<u8> for Serial<USART1>

Source§

type Error = Error

Read error
Source§

fn read(&mut self) -> Result<u8, Error>

Reads a single word from the serial interface
Source§

impl Read<u8> for Serial<USART2>

Source§

type Error = Error

Read error
Source§

fn read(&mut self) -> Result<u8, Error>

Reads a single word from the serial interface
Source§

impl Read<u8> for Serial<USART3>

Source§

type Error = Error

Read error
Source§

fn read(&mut self) -> Result<u8, Error>

Reads a single word from the serial interface
Source§

impl Write<u8> for Serial<USART1>

Source§

type Error = Error

Write error
Source§

fn flush(&mut self) -> Result<(), Self::Error>

Ensures that none of the previously written words are still buffered
Source§

fn write(&mut self, byte: u8) -> Result<(), Self::Error>

Writes a single word to the serial interface
Source§

impl Write<u8> for Serial<USART2>

Source§

type Error = Error

Write error
Source§

fn flush(&mut self) -> Result<(), Self::Error>

Ensures that none of the previously written words are still buffered
Source§

fn write(&mut self, byte: u8) -> Result<(), Self::Error>

Writes a single word to the serial interface
Source§

impl Write<u8> for Serial<USART3>

Source§

type Error = Error

Write error
Source§

fn flush(&mut self) -> Result<(), Self::Error>

Ensures that none of the previously written words are still buffered
Source§

fn write(&mut self, byte: u8) -> Result<(), Self::Error>

Writes a single word to the serial interface

Auto Trait Implementations§

§

impl<USART> Freeze for Serial<USART>
where USART: Freeze,

§

impl<USART> RefUnwindSafe for Serial<USART>
where USART: RefUnwindSafe,

§

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

§

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

§

impl<USART> Unpin for Serial<USART>
where USART: Unpin,

§

impl<USART> UnwindSafe for Serial<USART>
where USART: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.