| 1 | //! Controller Area Network (CAN) |
|---|---|
| 2 | #![macro_use] |
| 3 | |
| 4 | #[cfg_attr(can_bxcan, path = "bxcan/mod.rs")] |
| 5 | #[cfg_attr(any(can_fdcan_v1, can_fdcan_h7), path = "fdcan.rs")] |
| 6 | mod _version; |
| 7 | pub use _version::*; |
| 8 | |
| 9 | mod common; |
| 10 | pub mod enums; |
| 11 | pub mod frame; |
| 12 | pub mod util; |
| 13 | |
| 14 | pub use frame::Frame; |
| 15 |
