aboutsummaryrefslogtreecommitdiff
path: root/rtic-sync/src/arbiter
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2024-06-23 10:33:02 +0200
committerEmil Fresk <emil.fresk@gmail.com>2025-06-15 08:10:41 +0000
commit38c364473c83f7a6214046d157ea5fe92e758732 (patch)
tree10499ce35907a1a774c0e6762a0ad33fd8ef5afe /rtic-sync/src/arbiter
parent95616b3c59e0d57afc8fb569458a33973beeaf54 (diff)
Add blocking version of `rtic_sync::arbiter::{i2c,spi}::ArbiterDevice`
Diffstat (limited to 'rtic-sync/src/arbiter')
-rw-r--r--rtic-sync/src/arbiter/i2c.rs168
-rw-r--r--rtic-sync/src/arbiter/spi.rs164
2 files changed, 332 insertions, 0 deletions
diff --git a/rtic-sync/src/arbiter/i2c.rs b/rtic-sync/src/arbiter/i2c.rs
new file mode 100644
index 0000000..40cefce
--- /dev/null
+++ b/rtic-sync/src/arbiter/i2c.rs
@@ -0,0 +1,168 @@
+//! I2C bus sharing using [`Arbiter`]
+//!
+//! An Example how to use it in RTIC application:
+//! ```text
+//! #[app(device = some_hal, peripherals = true, dispatchers = [TIM16])]
+//! mod app {
+//! use core::mem::MaybeUninit;
+//! use rtic_sync::{arbiter::{i2c::ArbiterDevice, Arbiter},
+//!
+//! #[shared]
+//! struct Shared {}
+//!
+//! #[local]
+//! struct Local {
+//! ens160: Ens160<ArbiterDevice<'static, I2c<'static, I2C1>>>,
+//! }
+//!
+//! #[init(local = [
+//! i2c_arbiter: MaybeUninit<Arbiter<I2c<'static, I2C1>>> = MaybeUninit::uninit(),
+//! ])]
+//! fn init(cx: init::Context) -> (Shared, Local) {
+//! let i2c = I2c::new(cx.device.I2C1);
+//! let i2c_arbiter = cx.local.i2c_arbiter.write(Arbiter::new(i2c));
+//! let ens160 = Ens160::new(ArbiterDevice::new(i2c_arbiter), 0x52);
+//!
+//! i2c_sensors::spawn(i2c_arbiter).ok();
+//!
+//! (Shared {}, Local { ens160 })
+//! }
+//!
+//! #[task(local = [ens160])]
+//! async fn i2c_sensors(cx: i2c_sensors::Context, i2c: &'static Arbiter<I2c<'static, I2C1>>) {
+//! use sensor::Asensor;
+//!
+//! loop {
+//! // Use scope to make sure I2C access is dropped.
+//! {
+//! // Read from sensor driver that wants to use I2C directly.
+//! let mut i2c = i2c.access().await;
+//! let status = Asensor::status(&mut i2c).await;
+//! }
+//!
+//! // Read ENS160 sensor.
+//! let eco2 = cx.local.ens160.eco2().await;
+//! }
+//! }
+//! }
+//! ```
+
+use super::Arbiter;
+use embedded_hal::i2c::{AddressMode, ErrorType, I2c as BlockingI2c, Operation};
+use embedded_hal_async::i2c::I2c as AsyncI2c;
+
+/// [`Arbiter`]-based shared bus implementation for I2C.
+pub struct ArbiterDevice<'a, BUS> {
+ bus: &'a Arbiter<BUS>,
+}
+
+impl<'a, BUS> ArbiterDevice<'a, BUS> {
+ /// Create a new [`ArbiterDevice`] for I2C.
+ pub fn new(bus: &'a Arbiter<BUS>) -> Self {
+ Self { bus }
+ }
+}
+
+impl<BUS> ErrorType for ArbiterDevice<'_, BUS>
+where
+ BUS: ErrorType,
+{
+ type Error = BUS::Error;
+}
+
+impl<BUS, A> AsyncI2c<A> for ArbiterDevice<'_, BUS>
+where
+ BUS: AsyncI2c<A>,
+ A: AddressMode,
+{
+ async fn read(&mut self, address: A, read: &mut [u8]) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.read(address, read).await
+ }
+
+ async fn write(&mut self, address: A, write: &[u8]) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.write(address, write).await
+ }
+
+ async fn write_read(
+ &mut self,
+ address: A,
+ write: &[u8],
+ read: &mut [u8],
+ ) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.write_read(address, write, read).await
+ }
+
+ async fn transaction(
+ &mut self,
+ address: A,
+ operations: &mut [Operation<'_>],
+ ) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.transaction(address, operations).await
+ }
+}
+
+/// [`Arbiter`]-based shared bus implementation for I2C.
+pub struct BlockingArbiterDevice<'a, BUS> {
+ bus: &'a Arbiter<BUS>,
+}
+
+impl<'a, BUS> BlockingArbiterDevice<'a, BUS> {
+ /// Create a new [`BlockingArbiterDevice`] for I2C.
+ pub fn new(bus: &'a Arbiter<BUS>) -> Self {
+ Self { bus }
+ }
+
+ /// Create an `ArbiterDevice` from an `BlockingArbiterDevice`.
+ pub fn into_non_blocking(self) -> ArbiterDevice<'a, BUS>
+ where
+ BUS: AsyncI2c,
+ {
+ ArbiterDevice { bus: self.bus }
+ }
+}
+
+impl<'a, BUS> ErrorType for BlockingArbiterDevice<'a, BUS>
+where
+ BUS: ErrorType,
+{
+ type Error = BUS::Error;
+}
+
+impl<'a, BUS, A> AsyncI2c<A> for BlockingArbiterDevice<'a, BUS>
+where
+ BUS: BlockingI2c<A>,
+ A: AddressMode,
+{
+ async fn read(&mut self, address: A, read: &mut [u8]) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.read(address, read)
+ }
+
+ async fn write(&mut self, address: A, write: &[u8]) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.write(address, write)
+ }
+
+ async fn write_read(
+ &mut self,
+ address: A,
+ write: &[u8],
+ read: &mut [u8],
+ ) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.write_read(address, write, read)
+ }
+
+ async fn transaction(
+ &mut self,
+ address: A,
+ operations: &mut [Operation<'_>],
+ ) -> Result<(), Self::Error> {
+ let mut bus = self.bus.access().await;
+ bus.transaction(address, operations)
+ }
+}
diff --git a/rtic-sync/src/arbiter/spi.rs b/rtic-sync/src/arbiter/spi.rs
new file mode 100644
index 0000000..7ab15ed
--- /dev/null
+++ b/rtic-sync/src/arbiter/spi.rs
@@ -0,0 +1,164 @@
+//! SPI bus sharing using [`Arbiter`]
+
+use super::Arbiter;
+use embedded_hal::digital::OutputPin;
+use embedded_hal::spi::SpiBus as BlockingSpiBus;
+use embedded_hal_async::{
+ delay::DelayNs,
+ spi::{ErrorType, Operation, SpiBus as AsyncSpiBus, SpiDevice},
+};
+use embedded_hal_bus::spi::DeviceError;
+
+/// [`Arbiter`]-based shared bus implementation.
+pub struct ArbiterDevice<'a, BUS, CS, D> {
+ bus: &'a Arbiter<BUS>,
+ cs: CS,
+ delay: D,
+}
+
+impl<'a, BUS, CS, D> ArbiterDevice<'a, BUS, CS, D> {
+ /// Create a new [`ArbiterDevice`].
+ pub fn new(bus: &'a Arbiter<BUS>, cs: CS, delay: D) -> Self {
+ Self { bus, cs, delay }
+ }
+}
+
+impl<BUS, CS, D> ErrorType for ArbiterDevice<'_, BUS, CS, D>
+where
+ BUS: ErrorType,
+ CS: OutputPin,
+{
+ type Error = DeviceError<BUS::Error, CS::Error>;
+}
+
+impl<Word, BUS, CS, D> SpiDevice<Word> for ArbiterDevice<'_, BUS, CS, D>
+where
+ Word: Copy + 'static,
+ BUS: AsyncSpiBus<Word>,
+ CS: OutputPin,
+ D: DelayNs,
+{
+ async fn transaction(
+ &mut self,
+ operations: &mut [Operation<'_, Word>],
+ ) -> Result<(), DeviceError<BUS::Error, CS::Error>> {
+ let mut bus = self.bus.access().await;
+
+ self.cs.set_low().map_err(DeviceError::Cs)?;
+
+ let op_res = 'ops: {
+ for op in operations {
+ let res = match op {
+ Operation::Read(buf) => bus.read(buf).await,
+ Operation::Write(buf) => bus.write(buf).await,
+ Operation::Transfer(read, write) => bus.transfer(read, write).await,
+ Operation::TransferInPlace(buf) => bus.transfer_in_place(buf).await,
+ Operation::DelayNs(ns) => match bus.flush().await {
+ Err(e) => Err(e),
+ Ok(()) => {
+ self.delay.delay_ns(*ns).await;
+ Ok(())
+ }
+ },
+ };
+ if let Err(e) = res {
+ break 'ops Err(e);
+ }
+ }
+ Ok(())
+ };
+
+ // On failure, it's important to still flush and deassert CS.
+ let flush_res = bus.flush().await;
+ let cs_res = self.cs.set_high();
+
+ op_res.map_err(DeviceError::Spi)?;
+ flush_res.map_err(DeviceError::Spi)?;
+ cs_res.map_err(DeviceError::Cs)?;
+
+ Ok(())
+ }
+}
+
+/// [`Arbiter`]-based shared bus implementation.
+pub struct BlockingArbiterDevice<'a, BUS, CS, D> {
+ bus: &'a Arbiter<BUS>,
+ cs: CS,
+ delay: D,
+}
+
+impl<'a, BUS, CS, D> BlockingArbiterDevice<'a, BUS, CS, D> {
+ /// Create a new [`BlockingArbiterDevice`].
+ pub fn new(bus: &'a Arbiter<BUS>, cs: CS, delay: D) -> Self {
+ Self { bus, cs, delay }
+ }
+
+ /// Create an `ArbiterDevice` from an `BlockingArbiterDevice`.
+ pub fn into_non_blocking(self) -> ArbiterDevice<'a, BUS, CS, D>
+ where
+ BUS: AsyncSpiBus,
+ {
+ ArbiterDevice {
+ bus: self.bus,
+ cs: self.cs,
+ delay: self.delay,
+ }
+ }
+}
+
+impl<'a, BUS, CS, D> ErrorType for BlockingArbiterDevice<'a, BUS, CS, D>
+where
+ BUS: ErrorType,
+ CS: OutputPin,
+{
+ type Error = DeviceError<BUS::Error, CS::Error>;
+}
+
+impl<'a, Word, BUS, CS, D> SpiDevice<Word> for BlockingArbiterDevice<'a, BUS, CS, D>
+where
+ Word: Copy + 'static,
+ BUS: BlockingSpiBus<Word>,
+ CS: OutputPin,
+ D: DelayNs,
+{
+ async fn transaction(
+ &mut self,
+ operations: &mut [Operation<'_, Word>],
+ ) -> Result<(), DeviceError<BUS::Error, CS::Error>> {
+ let mut bus = self.bus.access().await;
+
+ self.cs.set_low().map_err(DeviceError::Cs)?;
+
+ let op_res = 'ops: {
+ for op in operations {
+ let res = match op {
+ Operation::Read(buf) => bus.read(buf),
+ Operation::Write(buf) => bus.write(buf),
+ Operation::Transfer(read, write) => bus.transfer(read, write),
+ Operation::TransferInPlace(buf) => bus.transfer_in_place(buf),
+ Operation::DelayNs(ns) => match bus.flush() {
+ Err(e) => Err(e),
+ Ok(()) => {
+ self.delay.delay_ns(*ns).await;
+ Ok(())
+ }
+ },
+ };
+ if let Err(e) = res {
+ break 'ops Err(e);
+ }
+ }
+ Ok(())
+ };
+
+ // On failure, it's important to still flush and deassert CS.
+ let flush_res = bus.flush();
+ let cs_res = self.cs.set_high();
+
+ op_res.map_err(DeviceError::Spi)?;
+ flush_res.map_err(DeviceError::Spi)?;
+ cs_res.map_err(DeviceError::Cs)?;
+
+ Ok(())
+ }
+}