1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
mod transmit;
pub use transmit::{Transmit, Transmitter};

#[cfg(feature = "mock")]
pub use transmit::MockTransmit;

mod receive;
pub use receive::{DualReceiver, Receive, Receiver};

#[cfg(feature = "mock")]
mod mock {
    use embedded_hal::can::{Frame, Id};

    #[derive(Clone, Debug, PartialEq, Eq)]
    pub struct MockFrame {
        pub id: Id,
        pub data: Vec<u8>,
    }

    impl Frame for MockFrame {
        fn new(id: impl Into<Id>, data: &[u8]) -> Option<Self> {
            Some(Self {
                id: id.into(),
                data: data.to_owned(),
            })
        }

        fn new_remote(_id: impl Into<Id>, _dlc: usize) -> Option<Self> {
            todo!()
        }

        fn is_extended(&self) -> bool {
            todo!()
        }

        fn is_remote_frame(&self) -> bool {
            todo!()
        }

        fn id(&self) -> Id {
            todo!()
        }

        fn dlc(&self) -> usize {
            todo!()
        }

        fn data(&self) -> &[u8] {
            todo!()
        }
    }
}

#[cfg(feature = "mock")]
pub use mock::MockFrame;