atsamd_hal::sercom::uart

Struct UartFuture

Source
pub struct UartFuture<C, D, R = NoneT, T = NoneT>
where C: ValidConfig, D: Capability,
{ /* private fields */ }
Expand description

async version of a Uart.

Create this struct by calling Uart::into_future.

Implementations§

Source§

impl<C, D, R, T> UartFuture<C, D, R, T>
where C: ValidConfig, D: Capability, R: AnyChannel<Status = ReadyFuture>,

Source

pub fn take_rx_channel(self) -> (UartFuture<C, D, NoneT, T>, R)

Reclaim the RX DMA channel. Subsequent RX operations will no longer use DMA.

Source§

impl<C, D, R, T> UartFuture<C, D, R, T>
where C: ValidConfig, D: Capability, T: AnyChannel<Status = ReadyFuture>,

Source

pub fn take_tx_channel(self) -> (UartFuture<C, D, R, NoneT>, T)

Reclaim the TX DMA channel. Subsequent TX operations will no longer use DMA.

Source§

impl<C, D, S, R, T> UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S>, C::Word: Beat, D: Receive, S: Sercom + 'static, DataReg: AsPrimitive<C::Word>, R: AnyChannel<Status = ReadyFuture>,

Source

pub async fn read(&mut self, words: &mut [C::Word]) -> Result<(), Error>

Read the specified number of Words into a buffer using DMA.

Source§

impl<C, D, S, R, T> UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S>, C::Word: Beat, D: Transmit, S: Sercom + 'static, T: AnyChannel<Status = ReadyFuture>,

Source

pub async fn write(&mut self, words: &[C::Word]) -> Result<(), Error>

Write words from a buffer asynchronously, using DMA.

Source§

impl<C, R, T> UartFuture<C, Duplex, R, T>
where C: ValidConfig,

Source

pub fn split( self, ) -> (UartFuture<C, RxDuplex, R, NoneT>, UartFuture<C, TxDuplex, NoneT, T>)

Split the UartFuture into RxDuplexand TxDuplex halves.

Source

pub fn join( rx: UartFuture<C, RxDuplex, R, NoneT>, tx: UartFuture<C, TxDuplex, NoneT, T>, ) -> Self

Join RxDuplex and TxDuplex halves back into a full UartFuture<C, Duplex>

Source§

impl<C, D> UartFuture<C, D, NoneT, NoneT>
where C: ValidConfig, D: SingleOwner,

Source

pub fn free(self) -> Uart<C, D>

Return the underlying Uart.

Source§

impl<C, D, S, R, T> UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S>, D: Receive, S: Sercom, DataReg: AsPrimitive<C::Word>,

Source

pub fn with_rx_dma_channel<Chan: AnyChannel<Status = ReadyFuture>>( self, rx_channel: Chan, ) -> UartFuture<C, D, Chan, T>

Use a DMA channel for receiving words on the RX line

Source

pub async fn read_word(&mut self) -> Result<C::Word, Error>

Read a single Word from the UART.

Source§

impl<C, D, S, T> UartFuture<C, D, NoneT, T>
where C: ValidConfig<Sercom = S>, D: Receive, S: Sercom, DataReg: AsPrimitive<C::Word>,

Source

pub async fn read( &mut self, buffer: &mut [C::Word], ) -> Result<(), (Error, usize)>

Read the specified number of Words into a buffer, word by word.

In case of an error, returns Err(Error, usize) where the usize represents the number of valid words read before the error occured.

Source§

impl<C, D, S, R, T> UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S>, D: Transmit, S: Sercom,

Source

pub fn with_tx_dma_channel<Chan: AnyChannel<Status = ReadyFuture>>( self, tx_channel: Chan, ) -> UartFuture<C, D, R, Chan>

Use a DMA channel for sending words on the TX line

Source

pub async fn write_word(&mut self, word: C::Word)

Write a single Word to the UART.

Source§

impl<C, D, S, R> UartFuture<C, D, R, NoneT>
where C: ValidConfig<Sercom = S>, D: Transmit, S: Sercom,

Source

pub async fn write(&mut self, buffer: &[C::Word])

Write the specified number of Words from a buffer to the UART, word by word.

Trait Implementations§

Source§

impl<C, D, R, T, S> AsMut<Uart<C, D, R, T>> for UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S>, D: Capability, S: Sercom,

Source§

fn as_mut(&mut self) -> &mut Uart<C, D, R, T>

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl<C, D, R, T, S> AsRef<Uart<C, D, R, T>> for UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S>, D: Capability, S: Sercom,

Source§

fn as_ref(&self) -> &Uart<C, D, R, T>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<C, D, R, T> ErrorType for UartFuture<C, D, R, T>
where C: ValidConfig, D: Capability,

Source§

type Error = Error

Error type of all the IO operations on this type.
Source§

impl<C, D, S, R> Read for UartFuture<C, D, NoneT, R>
where C: ValidConfig<Sercom = S, Word = u8>, D: Receive, S: Sercom,

Source§

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

Read some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Source§

async fn read_exact( &mut self, buf: &mut [u8], ) -> Result<(), ReadExactError<Self::Error>>

Read the exact number of bytes required to fill buf. Read more
Source§

impl<C, D, S, R, T> Read for UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S, Word = u8>, D: Receive, S: Sercom + 'static, DataReg: AsPrimitive<C::Word>, R: AnyChannel<Status = ReadyFuture>,

Source§

async fn read(&mut self, words: &mut [u8]) -> Result<usize, Error>

Read some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Source§

async fn read_exact( &mut self, buf: &mut [u8], ) -> Result<(), ReadExactError<Self::Error>>

Read the exact number of bytes required to fill buf. Read more
Source§

impl<C, D, S, R> Write for UartFuture<C, D, R, NoneT>
where C: ValidConfig<Sercom = S, Word = u8>, D: Transmit, S: Sercom,

Source§

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

Write a buffer into this writer, returning how many bytes were written. Read more
Source§

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

Flush this output stream, ensuring that all intermediately buffered contents reach their destination.
Source§

async fn write_all(&mut self, buf: &[u8]) -> Result<(), Self::Error>

Write an entire buffer into this writer. Read more
Source§

impl<C, D, S, R, T> Write for UartFuture<C, D, R, T>
where C: ValidConfig<Sercom = S, Word = u8>, D: Transmit, S: Sercom + 'static, T: AnyChannel<Status = ReadyFuture>,

Source§

async fn write(&mut self, words: &[u8]) -> Result<usize, Error>

Write a buffer into this writer, returning how many bytes were written. Read more
Source§

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

Flush this output stream, ensuring that all intermediately buffered contents reach their destination.
Source§

async fn write_all(&mut self, buf: &[u8]) -> Result<(), Self::Error>

Write an entire buffer into this writer. Read more

Auto Trait Implementations§

§

impl<C, D, R, T> Freeze for UartFuture<C, D, R, T>
where C: Freeze, R: Freeze, T: Freeze,

§

impl<C, D, R, T> RefUnwindSafe for UartFuture<C, D, R, T>

§

impl<C, D, R, T> Send for UartFuture<C, D, R, T>
where C: Send, R: Send, T: Send, D: Send,

§

impl<C, D, R, T> Sync for UartFuture<C, D, R, T>
where C: Sync, R: Sync, T: Sync, D: Sync,

§

impl<C, D, R, T> Unpin for UartFuture<C, D, R, T>
where C: Unpin, R: Unpin, T: Unpin, D: Unpin,

§

impl<C, D, R, T> UnwindSafe for UartFuture<C, D, R, T>

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> Same for T

Source§

type Output = T

Should always be Self
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.