sel4_async_block_io_fat/dummy_time_source.rs
1//
2// Copyright 2023, Colias Group, LLC
3//
4// SPDX-License-Identifier: BSD-2-Clause
5//
6
7pub use embedded_fat as fat;
8
9#[derive(Default)]
10pub struct DummyTimeSource(());
11
12impl DummyTimeSource {
13 pub fn new() -> Self {
14 Self(())
15 }
16}
17
18impl fat::TimeSource for DummyTimeSource {
19 fn get_timestamp(&self) -> fat::Timestamp {
20 unimplemented!()
21 }
22}