pub struct Uart<'d, M: Mode> { /* private fields */ }
Expand description
UART driver.
Implementations§
Source§impl<'d> Uart<'d, Blocking>
impl<'d> Uart<'d, Blocking>
Sourcepub fn new_blocking<T: Instance>(
uart: Peri<'d, T>,
tx: Peri<'d, impl TxPin<T>>,
rx: Peri<'d, impl RxPin<T>>,
config: Config,
) -> Self
pub fn new_blocking<T: Instance>( uart: Peri<'d, T>, tx: Peri<'d, impl TxPin<T>>, rx: Peri<'d, impl RxPin<T>>, config: Config, ) -> Self
Create a new UART without hardware flow control
Sourcepub fn new_with_rtscts_blocking<T: Instance>(
uart: Peri<'d, T>,
tx: Peri<'d, impl TxPin<T>>,
rx: Peri<'d, impl RxPin<T>>,
rts: Peri<'d, impl RtsPin<T>>,
cts: Peri<'d, impl CtsPin<T>>,
config: Config,
) -> Self
pub fn new_with_rtscts_blocking<T: Instance>( uart: Peri<'d, T>, tx: Peri<'d, impl TxPin<T>>, rx: Peri<'d, impl RxPin<T>>, rts: Peri<'d, impl RtsPin<T>>, cts: Peri<'d, impl CtsPin<T>>, config: Config, ) -> Self
Create a new UART with hardware flow control (RTS/CTS)
Sourcepub fn into_buffered<T: Instance>(
self,
_irq: impl Binding<T::Interrupt, BufferedInterruptHandler<T>>,
tx_buffer: &'d mut [u8],
rx_buffer: &'d mut [u8],
) -> BufferedUart
pub fn into_buffered<T: Instance>( self, _irq: impl Binding<T::Interrupt, BufferedInterruptHandler<T>>, tx_buffer: &'d mut [u8], rx_buffer: &'d mut [u8], ) -> BufferedUart
Convert this uart instance into a buffered uart using the provided irq, transmit and receive buffers.
Source§impl<'d> Uart<'d, Async>
impl<'d> Uart<'d, Async>
Sourcepub fn new<T: Instance>(
uart: Peri<'d, T>,
tx: Peri<'d, impl TxPin<T>>,
rx: Peri<'d, impl RxPin<T>>,
_irq: impl Binding<T::Interrupt, InterruptHandler<T>>,
tx_dma: Peri<'d, impl Channel>,
rx_dma: Peri<'d, impl Channel>,
config: Config,
) -> Self
pub fn new<T: Instance>( uart: Peri<'d, T>, tx: Peri<'d, impl TxPin<T>>, rx: Peri<'d, impl RxPin<T>>, _irq: impl Binding<T::Interrupt, InterruptHandler<T>>, tx_dma: Peri<'d, impl Channel>, rx_dma: Peri<'d, impl Channel>, config: Config, ) -> Self
Create a new DMA enabled UART without hardware flow control
Sourcepub fn new_with_rtscts<T: Instance>(
uart: Peri<'d, T>,
tx: Peri<'d, impl TxPin<T>>,
rx: Peri<'d, impl RxPin<T>>,
rts: Peri<'d, impl RtsPin<T>>,
cts: Peri<'d, impl CtsPin<T>>,
_irq: impl Binding<T::Interrupt, InterruptHandler<T>>,
tx_dma: Peri<'d, impl Channel>,
rx_dma: Peri<'d, impl Channel>,
config: Config,
) -> Self
pub fn new_with_rtscts<T: Instance>( uart: Peri<'d, T>, tx: Peri<'d, impl TxPin<T>>, rx: Peri<'d, impl RxPin<T>>, rts: Peri<'d, impl RtsPin<T>>, cts: Peri<'d, impl CtsPin<T>>, _irq: impl Binding<T::Interrupt, InterruptHandler<T>>, tx_dma: Peri<'d, impl Channel>, rx_dma: Peri<'d, impl Channel>, config: Config, ) -> Self
Create a new DMA enabled UART with hardware flow control (RTS/CTS)
Source§impl<'d, M: Mode> Uart<'d, M>
impl<'d, M: Mode> Uart<'d, M>
Sourcepub fn set_baudrate(&mut self, baudrate: u32)
pub fn set_baudrate(&mut self, baudrate: u32)
sets baudrate on runtime
Source§impl<'d, M: Mode> Uart<'d, M>
impl<'d, M: Mode> Uart<'d, M>
Sourcepub fn blocking_write(&mut self, buffer: &[u8]) -> Result<(), Error>
pub fn blocking_write(&mut self, buffer: &[u8]) -> Result<(), Error>
Transmit the provided buffer blocking execution until done.
Sourcepub fn blocking_flush(&mut self) -> Result<(), Error>
pub fn blocking_flush(&mut self) -> Result<(), Error>
Flush UART TX blocking execution until done.
Sourcepub fn blocking_read(&mut self, buffer: &mut [u8]) -> Result<(), Error>
pub fn blocking_read(&mut self, buffer: &mut [u8]) -> Result<(), Error>
Read from UART RX blocking execution until done.
Sourcepub async fn send_break(&mut self, bits: u32)
pub async fn send_break(&mut self, bits: u32)
Wait until TX is empty and send break condition.
Source§impl<'d> Uart<'d, Async>
impl<'d> Uart<'d, Async>
Sourcepub async fn write(&mut self, buffer: &[u8]) -> Result<(), Error>
pub async fn write(&mut self, buffer: &[u8]) -> Result<(), Error>
Write to UART TX from the provided buffer.
Sourcepub async fn read(&mut self, buffer: &mut [u8]) -> Result<(), Error>
pub async fn read(&mut self, buffer: &mut [u8]) -> Result<(), Error>
Read from UART RX into the provided buffer.
Sourcepub async fn read_to_break<'a>(
&mut self,
buf: &'a mut [u8],
) -> Result<usize, ReadToBreakError>
pub async fn read_to_break<'a>( &mut self, buf: &'a mut [u8], ) -> Result<usize, ReadToBreakError>
Read until the buffer is full or a line break occurs.
See UartRx::read_to_break()
for more details
Sourcepub async fn read_to_break_with_count<'a>(
&mut self,
buf: &'a mut [u8],
min_count: usize,
) -> Result<usize, ReadToBreakError>
pub async fn read_to_break_with_count<'a>( &mut self, buf: &'a mut [u8], min_count: usize, ) -> Result<usize, ReadToBreakError>
Read until the buffer is full or a line break occurs after at least min_count
bytes have been read.
See UartRx::read_to_break_with_count()
for more details