Fix irq pend behavior

This commit is contained in:
chemicstry 2022-05-26 23:24:02 +03:00
parent c3b899c470
commit 9a447f1359

View File

@ -268,9 +268,9 @@ impl<'d, U: UarteInstance, T: TimerInstance> embedded_io::asynch::BufRead
fn consume(&mut self, amt: usize) {
let signal = self.inner.with(|state| {
let full = state.rx.is_full();
let empty = state.rx.is_empty();
state.rx.pop(amt);
full
!empty
});
if signal {
self.inner.pend();