time to do final merge

This commit is contained in:
Priec
2025-11-19 21:46:07 +01:00
parent e569fbc39d
commit 8e1c2ec29f
26 changed files with 2940 additions and 2 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
}