pub struct Uart<'d, T: Instance, M: Mode> { /* private fields */ }
Expand description
UART driver.
Implementations§
Source§impl<'d, T: Instance> Uart<'d, T, Blocking>
impl<'d, T: Instance> Uart<'d, T, Blocking>
Sourcepub fn new_blocking(
uart: impl Peripheral<P = T> + 'd,
tx: impl Peripheral<P = impl TxPin<T>> + 'd,
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
config: Config,
) -> Self
pub fn new_blocking( uart: impl Peripheral<P = T> + 'd, tx: impl Peripheral<P = impl TxPin<T>> + 'd, rx: impl Peripheral<P = impl RxPin<T>> + 'd, config: Config, ) -> Self
Create a new UART without hardware flow control
Sourcepub fn new_with_rtscts_blocking(
uart: impl Peripheral<P = T> + 'd,
tx: impl Peripheral<P = impl TxPin<T>> + 'd,
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
rts: impl Peripheral<P = impl RtsPin<T>> + 'd,
cts: impl Peripheral<P = impl CtsPin<T>> + 'd,
config: Config,
) -> Self
pub fn new_with_rtscts_blocking( uart: impl Peripheral<P = T> + 'd, tx: impl Peripheral<P = impl TxPin<T>> + 'd, rx: impl Peripheral<P = impl RxPin<T>> + 'd, rts: impl Peripheral<P = impl RtsPin<T>> + 'd, cts: impl Peripheral<P = impl CtsPin<T>> + 'd, config: Config, ) -> Self
Create a new UART with hardware flow control (RTS/CTS)
Sourcepub fn into_buffered(
self,
irq: impl Binding<T::Interrupt, BufferedInterruptHandler<T>>,
tx_buffer: &'d mut [u8],
rx_buffer: &'d mut [u8],
) -> BufferedUart<'d, T>
pub fn into_buffered( self, irq: impl Binding<T::Interrupt, BufferedInterruptHandler<T>>, tx_buffer: &'d mut [u8], rx_buffer: &'d mut [u8], ) -> BufferedUart<'d, T>
Convert this uart instance into a buffered uart using the provided irq, transmit and receive buffers.
Source§impl<'d, T: Instance> Uart<'d, T, Async>
impl<'d, T: Instance> Uart<'d, T, Async>
Sourcepub fn new(
uart: impl Peripheral<P = T> + 'd,
tx: impl Peripheral<P = impl TxPin<T>> + 'd,
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
_irq: impl Binding<T::Interrupt, InterruptHandler<T>>,
tx_dma: impl Peripheral<P = impl Channel> + 'd,
rx_dma: impl Peripheral<P = impl Channel> + 'd,
config: Config,
) -> Self
pub fn new( uart: impl Peripheral<P = T> + 'd, tx: impl Peripheral<P = impl TxPin<T>> + 'd, rx: impl Peripheral<P = impl RxPin<T>> + 'd, _irq: impl Binding<T::Interrupt, InterruptHandler<T>>, tx_dma: impl Peripheral<P = impl Channel> + 'd, rx_dma: impl Peripheral<P = impl Channel> + 'd, config: Config, ) -> Self
Create a new DMA enabled UART without hardware flow control
Sourcepub fn new_with_rtscts(
uart: impl Peripheral<P = T> + 'd,
tx: impl Peripheral<P = impl TxPin<T>> + 'd,
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
rts: impl Peripheral<P = impl RtsPin<T>> + 'd,
cts: impl Peripheral<P = impl CtsPin<T>> + 'd,
_irq: impl Binding<T::Interrupt, InterruptHandler<T>>,
tx_dma: impl Peripheral<P = impl Channel> + 'd,
rx_dma: impl Peripheral<P = impl Channel> + 'd,
config: Config,
) -> Self
pub fn new_with_rtscts( uart: impl Peripheral<P = T> + 'd, tx: impl Peripheral<P = impl TxPin<T>> + 'd, rx: impl Peripheral<P = impl RxPin<T>> + 'd, rts: impl Peripheral<P = impl RtsPin<T>> + 'd, cts: impl Peripheral<P = impl CtsPin<T>> + 'd, _irq: impl Binding<T::Interrupt, InterruptHandler<T>>, tx_dma: impl Peripheral<P = impl Channel> + 'd, rx_dma: impl Peripheral<P = impl Channel> + 'd, config: Config, ) -> Self
Create a new DMA enabled UART with hardware flow control (RTS/CTS)
Source§impl<'d, T: Instance + 'd, M: Mode> Uart<'d, T, M>
impl<'d, T: Instance + 'd, M: Mode> Uart<'d, T, M>
Sourcepub fn set_baudrate(&mut self, baudrate: u32)
pub fn set_baudrate(&mut self, baudrate: u32)
sets baudrate on runtime
Source§impl<'d, T: Instance, M: Mode> Uart<'d, T, M>
impl<'d, T: Instance, M: Mode> Uart<'d, T, 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, T: Instance> Uart<'d, T, Async>
impl<'d, T: Instance> Uart<'d, T, 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