1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//! Blocking shared I2C bus
use core::cell::RefCell;
use core::fmt::Debug;
use core::future::Future;
use embedded_hal_1::i2c;
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub enum I2cBusDeviceError<BUS> {
I2c(BUS),
}
impl<BUS> i2c::Error for I2cBusDeviceError<BUS>
where
BUS: i2c::Error + Debug,
{
fn kind(&self) -> i2c::ErrorKind {
match self {
Self::I2c(e) => e.kind(),
}
}
}
pub struct I2cBusDevice<'a, BUS> {
bus: &'a RefCell<BUS>,
}
impl<'a, BUS> I2cBusDevice<'a, BUS> {
pub fn new(bus: &'a RefCell<BUS>) -> Self {
Self { bus }
}
}
impl<'a, BUS> i2c::ErrorType for I2cBusDevice<'a, BUS>
where
BUS: i2c::ErrorType,
{
type Error = I2cBusDeviceError<BUS::Error>;
}
impl<M, BUS> i2c::I2c for I2cBusDevice<'_, BUS>
where
BUS: i2c::I2c,
{
fn read(&mut self, address: u8, buffer: &mut [u8]) -> Result<(), Self::Error> {
let mut bus = self.bus.borrow_mut();
bus.read(address, buffer).map_err(I2cBusDeviceError::I2c)?;
Ok(())
}
fn write(&mut self, address: u8, bytes: &[u8]) -> Result<(), Self::Error> {
let mut bus = self.bus.borrow_mut();
bus.write(address, bytes).map_err(I2cBusDeviceError::I2c)?;
Ok(())
}
fn write_read(&mut self, address: u8, wr_buffer: &[u8], rd_buffer: &mut [u8]) -> Result<(), Self::Error> {
let mut bus = self.bus.borrow_mut();
bus.write_read(address, wr_buffer, rd_buffer)
.map_err(I2cBusDeviceError::I2c)?;
Ok(())
}
fn transaction<'a>(&mut self, address: u8, operations: &mut [i2c::Operation<'a>]) -> Result<(), Self::Error> {
let _ = address;
let _ = operations;
todo!()
}
}
|