aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/usart
diff options
context:
space:
mode:
authorelagil <[email protected]>2025-08-25 21:10:59 +0200
committerDario Nieuwenhuis <[email protected]>2025-09-05 14:43:29 +0200
commita4d3b4b6ae3f3265ea372e446a6e7b5d3685ea3a (patch)
tree979b06f9ea1261a2fcb3a5b5c840796a5cf59998 /embassy-stm32/src/usart
parent78364b966eb76c071d5450c2a13cc788d7e5be80 (diff)
feat: wip, write buffer in halves
Diffstat (limited to 'embassy-stm32/src/usart')
-rw-r--r--embassy-stm32/src/usart/ringbuffered.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/usart/ringbuffered.rs b/embassy-stm32/src/usart/ringbuffered.rs
index 1d4a44896..5f4e87834 100644
--- a/embassy-stm32/src/usart/ringbuffered.rs
+++ b/embassy-stm32/src/usart/ringbuffered.rs
@@ -381,7 +381,7 @@ impl ReadReady for RingBufferedUartRx<'_> {
381 crate::dma::ringbuffer::Error::Overrun => Self::Error::Overrun, 381 crate::dma::ringbuffer::Error::Overrun => Self::Error::Overrun,
382 crate::dma::ringbuffer::Error::DmaUnsynced => { 382 crate::dma::ringbuffer::Error::DmaUnsynced => {
383 error!( 383 error!(
384 "Ringbuffer error: DmaUNsynced, driver implementation is 384 "Ringbuffer error: DmaUNsynced, driver implementation is
385 probably bugged please open an issue" 385 probably bugged please open an issue"
386 ); 386 );
387 // we report this as overrun since its recoverable in the same way 387 // we report this as overrun since its recoverable in the same way