Struct Scb

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

Implementations§

Source§

impl Scb<'_>

Source

pub const fn new() -> Self

Source

pub fn enable_tx_interrupts(&self)

Source

pub fn disable_tx_interrupts(&self)

Source

pub fn enable_rx_interrupts(&self)

Source

pub fn disable_rx_interrupts(&self)

Source

pub fn set_standard_uart_mode(&self)

Source

pub fn enable_scb(&self)

Source

pub fn disable_scb(&self)

Source

pub fn transmit_uart_sync(&self, buffer: &[u8])

Source

pub fn transmit_uart_async( &self, buffer: &'static mut [u8], buffer_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Source

pub fn receive_uart_async( &self, buffer: &'static mut [u8], buffer_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Trait Implementations§

Source§

impl Configure for Scb<'_>

Source§

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

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

impl<'a> Receive<'a> for Scb<'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 Scb<'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 Scb<'a>

§

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

§

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

§

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

§

impl<'a> Unpin for Scb<'a>

§

impl<'a> !UnwindSafe for Scb<'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>,