Struct stm32f412g::usart::Usart

source ·
pub struct Usart<'a, DMA>
where DMA: StreamServer<'a>,
{ /* private fields */ }

Implementations§

source§

impl<'a> Usart<'a, Dma1<'a>>

source

pub fn new_usart2(clocks: &'a dyn Stm32f4Clocks) -> Usart<'a, Dma1<'a>>

source

pub fn new_usart3(clocks: &'a dyn Stm32f4Clocks) -> Usart<'a, Dma1<'a>>

source§

impl<'a> Usart<'a, Dma2<'a>>

source

pub fn new_usart1(clocks: &'a dyn Stm32f4Clocks) -> Usart<'a, Dma2<'a>>

source§

impl<'a, DMA> Usart<'a, DMA>
where DMA: StreamServer<'a>,

source

pub fn is_enabled_clock(&self) -> bool

source

pub fn enable_clock(&self)

source

pub fn disable_clock(&self)

source

pub fn set_dma(&self, tx_dma: TxDMA<'a, DMA>, rx_dma: RxDMA<'a, DMA>)

source

pub fn handle_interrupt(&self)

source

pub fn send_byte(&self, byte: u8)

Trait Implementations§

source§

impl<'a, DMA> Configure for Usart<'a, DMA>
where DMA: StreamServer<'a>,

source§

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

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

impl<'a, DMA> DeferredCallClient for Usart<'a, DMA>
where DMA: StreamServer<'a>,

source§

fn register(&'static self)

source§

fn handle_deferred_call(&self)

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

impl<'a, DMA> Receive<'a> for Usart<'a, DMA>
where DMA: StreamServer<'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> StreamClient<'a, Dma1<'a>> for Usart<'a, Dma1<'a>>

source§

impl<'a> StreamClient<'a, Dma2<'a>> for Usart<'a, Dma2<'a>>

source§

impl<'a, DMA> Transmit<'a> for Usart<'a, DMA>
where DMA: StreamServer<'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_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, DMA> !Freeze for Usart<'a, DMA>

§

impl<'a, DMA> !RefUnwindSafe for Usart<'a, DMA>

§

impl<'a, DMA> !Send for Usart<'a, DMA>

§

impl<'a, DMA> !Sync for Usart<'a, DMA>

§

impl<'a, DMA> Unpin for Usart<'a, DMA>
where <DMA as StreamServer<'a>>::Peripheral: Unpin,

§

impl<'a, DMA> !UnwindSafe for Usart<'a, DMA>

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>,

§

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>,

§

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>,