working uart but not waking after sleep

This commit is contained in:
Priec
2025-12-03 21:41:45 +01:00
parent 3ebbd97760
commit c7a74df023
22 changed files with 2513 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// src/uart/usart1.rs
use defmt::info;
use embassy_time::Duration;
use crate::hw_uart_pc::safety::preflight_and_suggest_yield_period;
pub fn setup_and_spawn(baudrate: u32,) -> Duration {
let yield_period: Duration = preflight_and_suggest_yield_period(baudrate);
info!("HW USART1 safe");
yield_period
}