cands_interface 0.1.17

This is an interface for DigitalServo USB CAN board.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod device_driver;
mod tcan4550;
mod tranceiver;

pub use tcan4550::id_filter::{SIDConfig, XIDConfig};
pub use tcan4550::register as tcan4550_register;

pub use tranceiver::TCAN455xTranceiver;

#[cfg(feature="raspberrypi")]
pub use device_driver::raspberrypi::GPIO_INPUT_PIN_NUM;

#[cfg(feature="raspberrypi")]
pub use device_driver::raspberrypi::GPIO_OUTPUT_PIN_NUM;

pub use tranceiver::rx_buffer::RxData;