cands_interface/
lib.rs

1mod device_driver;
2mod tcan4550;
3mod tranceiver;
4
5pub use tcan4550::id_filter::{SIDConfig, XIDConfig};
6pub use tcan4550::register as tcan4550_register;
7
8pub use tranceiver::TCAN455xTranceiver;
9
10#[cfg(feature="raspberrypi")]
11pub use device_driver::raspberrypi::GPIO_INPUT_PIN_NUM;
12
13#[cfg(feature="raspberrypi")]
14pub use device_driver::raspberrypi::GPIO_OUTPUT_PIN_NUM;
15
16pub use tranceiver::rx_buffer::RxData;