working async uart properly well

This commit is contained in:
Priec
2025-10-21 19:49:39 +02:00
parent 98ee0b2617
commit f610a84ed0

View File

@@ -24,7 +24,6 @@ async fn receive_uart(mut uart: Uart<'static, Async>) {
unwrap!(uart.write(&buf).await);
unwrap!(uart.write(b"a\r\n").await);
info!("uart received {}", buf[0]);
Timer::after(Duration::from_secs(1)).await;
}
}