Struct Uart

Source
pub struct Uart<'a> { /* private fields */ }

Implementations§

Source§

impl<'a> Uart<'a>

Source

pub const fn new( registers: StaticRef<UsciARegisters>, tx_dma_chan: usize, rx_dma_chan: usize, tx_dma_src: u8, rx_dma_src: u8, ) -> Self

Source

pub fn set_dma(&self, tx_dma: &'a DmaChannel<'a>, rx_dma: &'a DmaChannel<'a>)

Source

pub fn transmit_sync(&self, data: &[u8])

Trait Implementations§

Source§

impl Configure for Uart<'_>

Source§

fn configure(&self, params: Parameters) -> Result<(), ErrorCode>

Set the configuration parameters for the UART bus. Read more
Source§

impl DmaClient for Uart<'_>

Source§

fn transfer_done( &self, tx_buf: Option<&'static mut [u8]>, rx_buf: Option<&'static mut [u8]>, transmitted_bytes: usize, )

Source§

impl<'a> Receive<'a> for Uart<'a>

Source§

fn set_receive_client(&self, client: &'a dyn ReceiveClient)

Set the receive client, which will be called when reads complete.
Source§

fn receive_buffer( &self, rx_buffer: &'static mut [u8], rx_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Receive rx_len bytes into rx_buffer. Read more
Source§

fn receive_word(&self) -> Result<(), ErrorCode>

Receive a single word of data. Read more
Source§

fn receive_abort(&self) -> Result<(), ErrorCode>

Abort any ongoing receive transfers and return what has been received. Read more
Source§

impl<'a> Transmit<'a> for Uart<'a>

Source§

fn set_transmit_client(&self, client: &'a dyn TransmitClient)

Set the transmit client, which will be called when transmissions complete.
Source§

fn transmit_buffer( &self, tx_buffer: &'static mut [u8], tx_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Transmit a buffer of data. Read more
Source§

fn transmit_word(&self, _word: u32) -> Result<(), ErrorCode>

Transmit a single word of data asynchronously. Read more
Source§

fn transmit_abort(&self) -> Result<(), ErrorCode>

Abort an outstanding call to transmit_word or transmit_buffer. Read more

Auto Trait Implementations§

§

impl<'a> !Freeze for Uart<'a>

§

impl<'a> !RefUnwindSafe for Uart<'a>

§

impl<'a> !Send for Uart<'a>

§

impl<'a> !Sync for Uart<'a>

§

impl<'a> Unpin for Uart<'a>

§

impl<'a> !UnwindSafe for Uart<'a>

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.
Source§

impl<'a, T> Uart<'a> for T
where T: Configure + Transmit<'a> + Receive<'a>,

Source§

impl<'a, T> UartData<'a> for T
where T: Transmit<'a> + Receive<'a>,