1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Interface trait
// for now it's limited to I2C 
//pub mod spi;
//pub use self::spi::SpiInterface;
pub mod i2c;
pub use self::i2c::I2cInterface;

/// Interface Trait. `SpiInterface` and `I2cInterface` implement this.
pub trait Interface {
    type Error;

    // removed "sensor" argument as there's only one

    /// Writes a byte to a sensor's specified register address.
    /// # Arguments    
    /// * `addr` - register address
    /// * `value` - value to write
    fn write(&mut self, addr: u8, value: u8) -> Result<(), Self::Error>;
    /// Reads multiple bytes from a sensor's specified register address.
    /// # Arguments    
    /// * `addr` - register address
    /// * `buffer` - buffer to store read data
    fn read(&mut self, addr: u8, buffer: &mut [u8]) -> Result<(), Self::Error>;
}