Struct Uart

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

Implementations§

Source§

impl<'a> Uart<'a>

Source

pub fn new(base: StaticRef<UartRegisters>, clock_frequency: u32) -> Uart<'a>

Source

pub fn handle_interrupt(&self)

Source

pub fn transmit_sync(&self, bytes: &[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 DeferredCallClient for Uart<'_>

Source§

fn handle_deferred_call(&self)

Software interrupt function that is called when the deferred call is triggered.
Source§

fn register(&'static self)

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_abort(&self) -> Result<(), ErrorCode>

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

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

Receive a single word of data. Read more
Source§

impl<'a> ReceiveAdvanced<'a> for Uart<'a>

Source§

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

Receive data until interbyte_timeout bit periods have passed since the last byte or buffer is full. 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_data: &'static mut [u8], tx_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Transmit a buffer of data. Read more
Source§

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

Abort an outstanding call to transmit_word or transmit_buffer. Read more
Source§

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

Transmit a single word of data asynchronously. 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> UartAdvanced<'a> for T
where T: Configure + Transmit<'a> + ReceiveAdvanced<'a>,

Source§

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