ds323x-rs/src/interface.rs

142 lines
3.8 KiB
Rust
Raw Normal View History

2018-10-28 09:31:13 +00:00
//! I2C/SPI interfaces
#![deny(missing_docs)]
extern crate embedded_hal as hal;
use hal::blocking;
use super::{ DEVICE_ADDRESS, Error };
/// I2C interface
#[derive(Debug, Default)]
pub struct I2cInterface<I2C> {
pub(crate) i2c: I2C,
}
/// SPI interface
#[derive(Debug, Default)]
pub struct SpiInterface<SPI, CS> {
pub(crate) spi: SPI,
pub(crate) cs: CS
}
2018-10-28 16:28:55 +00:00
/// Write data
pub trait WriteData {
2018-10-28 09:31:13 +00:00
/// Error type
type Error;
/// Write to an u8 register
fn write_register(&mut self, register: u8, data: u8) -> Result<(), Error<Self::Error>>;
2018-10-28 17:04:34 +00:00
/// Write data. The first element corresponds to the starting address.
fn write_data(&mut self, payload: &mut [u8]) -> Result<(), Error<Self::Error>>;
2018-10-28 09:31:13 +00:00
}
2018-10-28 16:28:55 +00:00
impl<I2C, E> WriteData for I2cInterface<I2C>
2018-10-28 09:31:13 +00:00
where
I2C: blocking::i2c::Write<Error = E>
{
type Error = E;
fn write_register(&mut self, register: u8, data: u8) -> Result<(), Error<E>> {
let payload: [u8; 2] = [register, data];
self.i2c
.write(DEVICE_ADDRESS, &payload)
.map_err(Error::Comm)
}
2018-10-28 16:28:55 +00:00
2018-10-28 17:04:34 +00:00
fn write_data(&mut self, payload: &mut [u8]) -> Result<(), Error<Self::Error>> {
2018-10-28 16:28:55 +00:00
self.i2c
.write(DEVICE_ADDRESS, &payload)
.map_err(Error::Comm)
}
2018-10-28 09:31:13 +00:00
}
2018-10-28 16:28:55 +00:00
impl<SPI, CS, E> WriteData for SpiInterface<SPI, CS>
2018-10-28 09:31:13 +00:00
where
SPI: blocking::spi::Write<u8, Error = E>,
CS: hal::digital::OutputPin
{
type Error = E;
fn write_register(&mut self, register: u8, data: u8) -> Result<(), Error<E>> {
self.cs.set_low();
let payload: [u8; 2] = [register + 0x80, data];
let result = self.spi
.write(&payload)
.map_err(Error::Comm);
2018-10-28 16:28:55 +00:00
self.cs.set_high();
result
}
2018-10-28 17:04:34 +00:00
fn write_data(&mut self, payload: &mut [u8]) -> Result<(), Error<Self::Error>> {
2018-10-28 16:28:55 +00:00
self.cs.set_low();
2018-10-28 17:04:34 +00:00
payload[0] += 0x80;
2018-10-28 16:28:55 +00:00
let result = self.spi
.write(&payload)
.map_err(Error::Comm);
2018-10-28 09:31:13 +00:00
self.cs.set_high();
result
}
}
2018-10-28 16:28:55 +00:00
/// Read data
pub trait ReadData {
2018-10-28 09:31:13 +00:00
/// Error type
type Error;
/// Read an u8 register
fn read_register(&mut self, register: u8) -> Result<u8, Error<Self::Error>>;
2018-10-28 17:04:34 +00:00
/// Read some data. The first element corresponds to the starting address.
fn read_data(&mut self, payload: &mut [u8]) -> Result<(), Error<Self::Error>>;
2018-10-28 09:31:13 +00:00
}
2018-10-28 16:28:55 +00:00
impl<I2C, E> ReadData for I2cInterface<I2C>
2018-10-28 09:31:13 +00:00
where
I2C: blocking::i2c::WriteRead<Error = E>
{
type Error = E;
fn read_register(&mut self, register: u8) -> Result<u8, Error<E>> {
let mut data = [0];
self.i2c
.write_read(DEVICE_ADDRESS, &[register], &mut data)
.map_err(Error::Comm)
.and(Ok(data[0]))
}
2018-10-28 16:28:55 +00:00
2018-10-28 17:04:34 +00:00
fn read_data(&mut self, payload: &mut [u8]) -> Result<(), Error<Self::Error>> {
let len = payload.len();
2018-10-28 16:28:55 +00:00
self.i2c
2018-10-28 17:04:34 +00:00
.write_read(DEVICE_ADDRESS, &[payload[0]], &mut payload[1..=(len-1)])
2018-10-28 16:28:55 +00:00
.map_err(Error::Comm)
}
2018-10-28 09:31:13 +00:00
}
2018-10-28 16:28:55 +00:00
impl<SPI, CS, E> ReadData for SpiInterface<SPI, CS>
2018-10-28 09:31:13 +00:00
where
SPI: blocking::spi::Transfer<u8, Error = E>,
CS: hal::digital::OutputPin
{
type Error = E;
fn read_register(&mut self, register: u8) -> Result<u8, Error<E>> {
self.cs.set_low();
let mut data = [register, 0];
2018-10-28 16:28:55 +00:00
let result = self.spi
.transfer(&mut data)
.map_err(Error::Comm);
self.cs.set_high();
match result {
Ok(result) => Ok(result[1]),
Err(e) => Err(e)
}
}
2018-10-28 17:04:34 +00:00
fn read_data(&mut self, mut payload: &mut [u8]) -> Result<(), Error<Self::Error>> {
2018-10-28 16:28:55 +00:00
self.cs.set_low();
let result = self.spi
.transfer(&mut payload)
.map_err(Error::Comm);
self.cs.set_high();
2018-10-28 17:04:34 +00:00
result?;
Ok(())
2018-10-28 09:31:13 +00:00
}
}