Skip to content

Commit

Permalink
Update fbw-common/src/wasm/systems/systems/src/communications/audio_m…
Browse files Browse the repository at this point in the history
…anagement_unit.rs


u128 to from_millis

Co-authored-by: Pascal Störzbach <[email protected]>
  • Loading branch information
juliansebline and Gurgel100 authored Feb 2, 2025
1 parent 7e00311 commit 6af327c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use super::audio_control_panel::AudioControlPanel;
use super::receivers::{CommTransceiver, NavReceiver};

// Restart full cycle every 160ms as stated in AMM
pub const TIMEOUT: u128 = 160;
pub const TIMEOUT: Duration = Duration::from_millis(160);

enum TypeCard {
Selcal(Selcal),
Expand Down

0 comments on commit 6af327c

Please sign in to comment.