using correct pipes now
This commit is contained in:
@@ -3,18 +3,10 @@ use defmt::info;
|
||||
use embassy_time::Duration;
|
||||
|
||||
use crate::hw_uart_pc::safety::preflight_and_suggest_yield_period;
|
||||
use crate::hw_uart_pc::driver::UartHandle;
|
||||
use crate::config::{PIPE_HW_TX, PIPE_HW_RX};
|
||||
|
||||
pub fn setup_and_spawn(baudrate: u32,) -> (UartHandle, Duration) {
|
||||
pub fn setup_and_spawn(baudrate: u32,) -> Duration {
|
||||
let yield_period: Duration = preflight_and_suggest_yield_period(baudrate);
|
||||
info!("HW USART1 safe");
|
||||
|
||||
let handle = UartHandle {
|
||||
tx: &PIPE_HW_TX,
|
||||
rx: &PIPE_HW_RX,
|
||||
yield_period,
|
||||
};
|
||||
|
||||
(handle, yield_period)
|
||||
yield_period
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user