Skip to content

Commit

Permalink
Merge pull request #671 from dimpolo/i2c_hal_02_transactional
Browse files Browse the repository at this point in the history
implement `embedded_hal::blocking::i2c::Transactional` for `I2c`
  • Loading branch information
burrbull authored Jul 13, 2023
2 parents 7402fde + d99b53c commit ffd55ce
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 25 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed

- implement `embedded_hal::blocking::i2c::Transactional` for `I2c` [#671]

[#671]: https://github.com/stm32-rs/stm32f4xx-hal/pull/671

## [v0.17.0] - 2023-07-11

### Changed
Expand Down
70 changes: 46 additions & 24 deletions src/i2c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use crate::rcc::{Enable, Reset};
use crate::gpio;

use crate::rcc::Clocks;
use embedded_hal_one::i2c::Operation;
use fugit::{HertzU32 as Hertz, RateExtU32};

mod hal_02;
Expand Down Expand Up @@ -508,25 +507,27 @@ impl<I2C: Instance> I2c<I2C> {
pub fn transaction<'a>(
&mut self,
addr: u8,
mut ops: impl Iterator<Item = Operation<'a>>,
mut ops: impl Iterator<Item = Hal1Operation<'a>>,
) -> Result<(), Error> {
if let Some(mut prev_op) = ops.next() {
// 1. Generate Start for operation
match &prev_op {
Operation::Read(_) => self.prepare_read(addr)?,
Operation::Write(_) => self.prepare_write(addr)?,
Hal1Operation::Read(_) => self.prepare_read(addr)?,
Hal1Operation::Write(_) => self.prepare_write(addr)?,
};

for op in ops {
// 2. Execute previous operations.
match &mut prev_op {
Operation::Read(rb) => self.read_bytes(rb)?,
Operation::Write(wb) => self.write_bytes(wb.iter().cloned())?,
Hal1Operation::Read(rb) => self.read_bytes(rb)?,
Hal1Operation::Write(wb) => self.write_bytes(wb.iter().cloned())?,
};
// 3. If operation changes type we must generate new start
match (&prev_op, &op) {
(Operation::Read(_), Operation::Write(_)) => self.prepare_write(addr)?,
(Operation::Write(_), Operation::Read(_)) => self.prepare_read(addr)?,
(Hal1Operation::Read(_), Hal1Operation::Write(_)) => {
self.prepare_write(addr)?
}
(Hal1Operation::Write(_), Hal1Operation::Read(_)) => self.prepare_read(addr)?,
_ => {} // No changes if operation have not changed
}

Expand All @@ -535,8 +536,8 @@ impl<I2C: Instance> I2c<I2C> {

// 4. Now, prev_op is last command use methods variations that will generate stop
match prev_op {
Operation::Read(rb) => self.read_wo_prepare(rb)?,
Operation::Write(wb) => self.write_wo_prepare(wb)?,
Hal1Operation::Read(rb) => self.read_wo_prepare(rb)?,
Hal1Operation::Write(wb) => self.write_wo_prepare(wb)?,
};
}

Expand All @@ -547,27 +548,47 @@ impl<I2C: Instance> I2c<I2C> {
pub fn transaction_slice(
&mut self,
addr: u8,
ops_slice: &mut [Operation<'_>],
ops_slice: &mut [Hal1Operation<'_>],
) -> Result<(), Error> {
let mut ops = ops_slice.iter_mut();
transaction_impl!(self, addr, ops_slice, Hal1Operation);
// Fallthrough is success
Ok(())
}

fn transaction_slice_hal_02(
&mut self,
addr: u8,
ops_slice: &mut [Hal02Operation<'_>],
) -> Result<(), Error> {
transaction_impl!(self, addr, ops_slice, Hal02Operation);
// Fallthrough is success
Ok(())
}
}

macro_rules! transaction_impl {
($self:ident, $addr:ident, $ops_slice:ident, $Operation:ident) => {
let i2c = $self;
let addr = $addr;
let mut ops = $ops_slice.iter_mut();

if let Some(mut prev_op) = ops.next() {
// 1. Generate Start for operation
match &prev_op {
Operation::Read(_) => self.prepare_read(addr)?,
Operation::Write(_) => self.prepare_write(addr)?,
$Operation::Read(_) => i2c.prepare_read(addr)?,
$Operation::Write(_) => i2c.prepare_write(addr)?,
};

for op in ops {
// 2. Execute previous operations.
match &mut prev_op {
Operation::Read(rb) => self.read_bytes(rb)?,
Operation::Write(wb) => self.write_bytes(wb.iter().cloned())?,
$Operation::Read(rb) => i2c.read_bytes(rb)?,
$Operation::Write(wb) => i2c.write_bytes(wb.iter().cloned())?,
};
// 3. If operation changes type we must generate new start
match (&prev_op, &op) {
(Operation::Read(_), Operation::Write(_)) => self.prepare_write(addr)?,
(Operation::Write(_), Operation::Read(_)) => self.prepare_read(addr)?,
($Operation::Read(_), $Operation::Write(_)) => i2c.prepare_write(addr)?,
($Operation::Write(_), $Operation::Read(_)) => i2c.prepare_read(addr)?,
_ => {} // No changes if operation have not changed
}

Expand All @@ -576,12 +597,13 @@ impl<I2C: Instance> I2c<I2C> {

// 4. Now, prev_op is last command use methods variations that will generate stop
match prev_op {
Operation::Read(rb) => self.read_wo_prepare(rb)?,
Operation::Write(wb) => self.write_wo_prepare(wb)?,
$Operation::Read(rb) => i2c.read_wo_prepare(rb)?,
$Operation::Write(wb) => i2c.write_wo_prepare(wb)?,
};
}

// Fallthrough is success
Ok(())
}
};
}
use transaction_impl;

type Hal1Operation<'a> = embedded_hal_one::i2c::Operation<'a>;
type Hal02Operation<'a> = embedded_hal::blocking::i2c::Operation<'a>;
19 changes: 18 additions & 1 deletion src/i2c/hal_02.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
mod blocking {
use super::super::{Error, I2c, Instance};
use embedded_hal::blocking::i2c::{Read, Write, WriteIter, WriteIterRead, WriteRead};
use embedded_hal::blocking::i2c::{
Operation, Read, Transactional, Write, WriteIter, WriteIterRead, WriteRead,
};

impl<I2C> WriteRead for I2c<I2C>
where
Expand Down Expand Up @@ -72,4 +74,19 @@ mod blocking {
self.read(addr, buffer)
}
}

impl<I2C> Transactional for I2c<I2C>
where
I2C: Instance,
{
type Error = Error;

fn exec<'a>(
&mut self,
address: u8,
operations: &mut [Operation<'a>],
) -> Result<(), Self::Error> {

Check warning on line 88 in src/i2c/hal_02.rs

View workflow job for this annotation

GitHub Actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a --> src/i2c/hal_02.rs:84:9 | 84 | / fn exec<'a>( 85 | | &mut self, 86 | | address: u8, 87 | | operations: &mut [Operation<'a>], 88 | | ) -> Result<(), Self::Error> { | |____________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 84 ~ fn exec( 85 | &mut self, 86 | address: u8, 87 ~ operations: &mut [Operation<'_>], |
self.transaction_slice_hal_02(address, operations)
}
}
}

0 comments on commit ffd55ce

Please sign in to comment.