Struct Tx

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

Serial transmitter

Implementations§

Source§

impl<USART: Instance> Tx<USART>

Source

pub fn write_u16(&mut self, word: u16) -> Result<(), Infallible>

Writes 9-bit words to the UART/USART

If the UART/USART was configured with WordLength::Bits9, the 9 least significant bits will be transmitted and the other 7 bits will be ignored. Otherwise, the 8 least significant bits will be transmitted and the other 8 bits will be ignored.

Source

pub fn write(&mut self, word: u8) -> Result<(), Infallible>

Source

pub fn bwrite_all_u16(&mut self, buffer: &[u16]) -> Result<(), Infallible>

Source

pub fn bwrite_all(&mut self, buffer: &[u8]) -> Result<(), Infallible>

Source

pub fn flush(&mut self) -> Result<(), Infallible>

Source

pub fn bflush(&mut self) -> Result<(), Infallible>

Source

pub fn listen(&mut self)

Start listening for transmit interrupt event

Source

pub fn unlisten(&mut self)

Stop listening for transmit interrupt event

Source

pub fn is_tx_empty(&self) -> bool

Returns true if the tx register is empty (and can accept data)

Source

pub fn is_tx_complete(&self) -> bool

Source§

impl Tx<USART1>

Source

pub fn with_dma(self, channel: C4) -> TxDma1

Source§

impl Tx<USART2>

Source

pub fn with_dma(self, channel: C7) -> TxDma2

Source§

impl Tx<USART3>

Source

pub fn with_dma(self, channel: C2) -> TxDma3

Trait Implementations§

Source§

impl<USART: Instance> Write for Tx<USART>

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<USART: Instance> Write<u16> for Tx<USART>

Source§

type Error = Infallible

The type of error that can occur when writing
Source§

fn bwrite_all(&mut self, buffer: &[u16]) -> Result<(), Self::Error>

Writes a slice, blocking until everything has been written Read more
Source§

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

Block until the serial interface has sent all buffered words
Source§

impl<USART: Instance> Write<u8> for Tx<USART>

Source§

type Error = Infallible

The type of error that can occur when writing
Source§

fn bwrite_all(&mut self, buffer: &[u8]) -> Result<(), Self::Error>

Writes a slice, blocking until everything has been written Read more
Source§

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

Block until the serial interface has sent all buffered words
Source§

impl<USART: Instance> Write<u16> for Tx<USART>

Source§

type Error = Infallible

Write error
Source§

fn write(&mut self, word: u16) -> Result<(), Self::Error>

Writes a single word to the serial interface
Source§

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

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

impl<USART: Instance> Write<u8> for Tx<USART>

Source§

type Error = Infallible

Write error
Source§

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

Writes a single word to the serial interface
Source§

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

Ensures that none of the previously written words are still buffered

Auto Trait Implementations§

§

impl<USART> Freeze for Tx<USART>

§

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

§

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

§

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

§

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

§

impl<USART> UnwindSafe for Tx<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.