ft260hid 0.1.0

Library to control FT260 USB-I2C/UART bridge IC
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// module to control FT260 HID device
pub mod device;
mod error;
mod hid;
/// interface modules to use GPIO, I2C and UART features
pub mod io;

/// common Error type in this crate
pub use error::Ft260Error;

/// common Result type in this crate
pub type Ft260Result<T> = Result<T, Ft260Error>;