cands_interface 0.1.3

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

#[cfg(feature="usb-ftdi")]
pub use tranceiver::usb_ftdi::TCAN455xTranceiver;

#[cfg(feature="raspberrypi")]
pub use tranceiver::raspberrypi::TCAN455xTranceiver;

/// Receive data buffer on user space
pub use rx_buffer::RxData;