diff --git a/embedded-hal-bus/Cargo.toml b/embedded-hal-bus/Cargo.toml index 7f404e3d..f226ac3f 100644 --- a/embedded-hal-bus/Cargo.toml +++ b/embedded-hal-bus/Cargo.toml @@ -37,6 +37,7 @@ embedded-hal-async = { version = "1.0.0", path = "../embedded-hal-async", option critical-section = { version = "1.0" } defmt-03 = { package = "defmt", version = "0.3", optional = true } portable-atomic = {version = "1.3", default-features = false, optional = true, features = ["require-cas"]} +unwrap-infallible = "0.1.5" [package.metadata.docs.rs] features = ["std", "async"] diff --git a/embedded-hal-bus/src/spi/exclusive.rs b/embedded-hal-bus/src/spi/exclusive.rs index 1599ae7a..adef937b 100644 --- a/embedded-hal-bus/src/spi/exclusive.rs +++ b/embedded-hal-bus/src/spi/exclusive.rs @@ -1,7 +1,7 @@ //! SPI bus sharing mechanisms. use embedded_hal::delay::DelayNs; -use embedded_hal::digital::OutputPin; +use embedded_hal::digital::{NoPin, OutputPin}; use embedded_hal::spi::{ErrorType, Operation, SpiBus, SpiDevice}; #[cfg(feature = "async")] use embedded_hal_async::{ @@ -49,6 +49,15 @@ impl ExclusiveDevice { } } +use unwrap_infallible::UnwrapInfallible; + +impl ExclusiveDevice { + /// Create a new [`ExclusiveDevice`] without a Chip Select (CS) pin. + pub fn new_no_cs(bus: BUS, delay: D) -> Self { + ExclusiveDevice::new(bus, NoPin, delay).unwrap_infallible() + } +} + impl ExclusiveDevice { /// Create a new [`ExclusiveDevice`] without support for in-transaction delays. /// @@ -83,6 +92,13 @@ impl ExclusiveDevice { } } +impl ExclusiveDevice { + /// Create a new [`ExclusiveDevice`] without a Chip Select (CS) pin. + pub fn new_no_cs_no_delay(bus: BUS) -> Self { + ExclusiveDevice::new_no_delay(bus, NoPin).unwrap_infallible() + } +} + impl ErrorType for ExclusiveDevice where BUS: ErrorType, diff --git a/embedded-hal/src/digital.rs b/embedded-hal/src/digital.rs index a38040c0..28c889f5 100644 --- a/embedded-hal/src/digital.rs +++ b/embedded-hal/src/digital.rs @@ -222,3 +222,27 @@ impl InputPin for &mut T { T::is_low(self) } } + +use core::convert::Infallible; +use ErrorType as NoPinErrorType; + +/// A dummy pin that does nothing. +/// This can be used for devices that do not require a Chip Select (CS) pin. +#[derive(Debug, Default, Copy, Clone)] +pub struct NoPin; + +// Implement `ErrorType` for NoPin (Explicitly Using `digital::ErrorType`) +impl NoPinErrorType for NoPin { + type Error = Infallible; +} + +// Implement `OutputPin` +impl OutputPin for NoPin { + fn set_low(&mut self) -> Result<(), Infallible> { + Ok(()) + } + + fn set_high(&mut self) -> Result<(), Infallible> { + Ok(()) + } +}