1412: stm32/uart: abort on error r=Dirbaio a=xoviat

This PR aborts the DMA transfer in the event of a UART error. Otherwise, the transfer will never complete, and an error will not be returned.

Co-authored-by: xoviat <xoviat@users.noreply.github.com>
This commit is contained in:
bors[bot] 2023-04-30 14:58:36 +00:00 committed by GitHub
commit 41fe718ea8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -497,12 +497,7 @@ impl<'d, T: BasicInstance, RxDma> UartRx<'d, T, RxDma> {
unreachable!();
}
if !enable_idle_line_detection {
transfer.await;
return Ok(ReadCompletionEvent::DmaCompleted);
}
if enable_idle_line_detection {
// clear idle flag
let sr = sr(r).read();
// This read also clears the error and idle interrupt flags on v1.
@ -514,11 +509,12 @@ impl<'d, T: BasicInstance, RxDma> UartRx<'d, T, RxDma> {
w.set_idleie(true);
});
}
}
compiler_fence(Ordering::SeqCst);
// future which completes when idle line is detected
let idle = poll_fn(move |cx| {
// future which completes when idle line or error is detected
let abort = poll_fn(move |cx| {
let s = T::state();
s.rx_waker.register(cx.waker());
@ -554,7 +550,7 @@ impl<'d, T: BasicInstance, RxDma> UartRx<'d, T, RxDma> {
}
}
if sr.idle() {
if enable_idle_line_detection && sr.idle() {
// Idle line detected
return Poll::Ready(Ok(()));
}
@ -565,7 +561,7 @@ impl<'d, T: BasicInstance, RxDma> UartRx<'d, T, RxDma> {
// wait for the first of DMA request or idle line detected to completes
// select consumes its arguments
// when transfer is dropped, it will stop the DMA request
let r = match select(transfer, idle).await {
let r = match select(transfer, abort).await {
// DMA transfer completed first
Either::Left(((), _)) => Ok(ReadCompletionEvent::DmaCompleted),