minor tweak for simple UART example

This commit is contained in:
Robin Müller 2025-03-07 16:20:23 +01:00
parent d419325312
commit 8cdee8b733
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -45,9 +45,6 @@ fn main() -> ! {
.expect("TX send error");
}
Err(nb::Error::WouldBlock) => (),
Err(nb::Error::Other(uart_error)) => {
rprintln!("UART receive error {:?}", uart_error);
}
}
}
}