Struct Serial

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

Serial abstraction

Implementations§

Source§

impl<Config> Serial<USART1, Config>

Source

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

Separates the serial struct into separate channel objects for sending (Tx) and receiving (Rx)

Source§

impl<Config> Serial<USART2, Config>

Source

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

Separates the serial struct into separate channel objects for sending (Tx) and receiving (Rx)

Source§

impl<Config> Serial<USART3, Config>

Source

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

Separates the serial struct into separate channel objects for sending (Tx) and receiving (Rx)

Source§

impl<Config> Serial<USART4, Config>

Source

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

Separates the serial struct into separate channel objects for sending (Tx) and receiving (Rx)

Source§

impl<Config> Serial<LPUART, Config>

Source

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

Separates the serial struct into separate channel objects for sending (Tx) and receiving (Rx)

Source§

impl Serial<USART1, FullConfig>

Source

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

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 is_pending(&mut self, event: Event) -> bool

Check if interrupt event is pending

Source

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

Clear pending interrupt

Source§

impl Serial<USART2, FullConfig>

Source

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

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 is_pending(&mut self, event: Event) -> bool

Check if interrupt event is pending

Source

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

Clear pending interrupt

Source§

impl Serial<USART3, BasicConfig>

Source

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

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 is_pending(&mut self, event: Event) -> bool

Check if interrupt event is pending

Source

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

Clear pending interrupt

Source§

impl Serial<USART4, BasicConfig>

Source

pub fn usart4<PINS: Pins<USART4>>( usart: USART4, pins: PINS, config: BasicConfig, rcc: &mut Rcc, ) -> Result<Self, InvalidConfig>

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 is_pending(&mut self, event: Event) -> bool

Check if interrupt event is pending

Source

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

Clear pending interrupt

Source§

impl Serial<LPUART, BasicConfig>

Source

pub fn lpuart<PINS: Pins<LPUART>>( usart: LPUART, pins: PINS, config: BasicConfig, rcc: &mut Rcc, ) -> Result<Self, InvalidConfig>

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 is_pending(&mut self, event: Event) -> bool

Check if interrupt event is pending

Source

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

Clear pending interrupt

Trait Implementations§

Source§

impl<USART, Config> Write for Serial<USART, Config>
where Serial<USART, Config>: 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<Config> Read<u8> for Serial<LPUART, Config>

Source§

type Error = Error

Read error
Source§

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

Reads a single word from the serial interface
Source§

impl<Config> Read<u8> for Serial<USART1, Config>

Source§

type Error = Error

Read error
Source§

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

Reads a single word from the serial interface
Source§

impl<Config> Read<u8> for Serial<USART2, Config>

Source§

type Error = Error

Read error
Source§

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

Reads a single word from the serial interface
Source§

impl<Config> Read<u8> for Serial<USART3, Config>

Source§

type Error = Error

Read error
Source§

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

Reads a single word from the serial interface
Source§

impl<Config> Read<u8> for Serial<USART4, Config>

Source§

type Error = Error

Read error
Source§

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

Reads a single word from the serial interface
Source§

impl<Config> Write<u8> for Serial<LPUART, Config>

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<Config> Write<u8> for Serial<USART1, Config>

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<Config> Write<u8> for Serial<USART2, Config>

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<Config> Write<u8> for Serial<USART3, Config>

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<Config> Write<u8> for Serial<USART4, Config>

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, Config> Freeze for Serial<USART, Config>
where USART: Freeze,

§

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

§

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

§

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

§

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

§

impl<USART, Config> UnwindSafe for Serial<USART, Config>
where USART: UnwindSafe, Config: 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.