Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added two new constructors to ExclusiveDevice to allow for SPI devices that don't require a CS pin #650

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions embedded-hal-bus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
18 changes: 17 additions & 1 deletion embedded-hal-bus/src/spi/exclusive.rs
Original file line number Diff line number Diff line change
@@ -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::{
Expand Down Expand Up @@ -49,6 +49,15 @@ impl<BUS, CS, D> ExclusiveDevice<BUS, CS, D> {
}
}

use unwrap_infallible::UnwrapInfallible;

impl<BUS, D> ExclusiveDevice<BUS, NoPin, D> {
/// 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()
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To not pull another dependency, you can also do

pub fn new_no_cs(bus: BUS, delay: D) -> Self {
    match ExclusiveDevice::new(bus, NoPin, delay) {
        Ok(this) => this,
        // no Err() branch
    }
}

Less readable, but avoids dependency-bloat... Not sure what the official stance of e-h on that topic is...

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah avoiding deps is always nice.

}
}

impl<BUS, CS> ExclusiveDevice<BUS, CS, super::NoDelay> {
/// Create a new [`ExclusiveDevice`] without support for in-transaction delays.
///
Expand Down Expand Up @@ -83,6 +92,13 @@ impl<BUS, CS> ExclusiveDevice<BUS, CS, super::NoDelay> {
}
}

impl<BUS> ExclusiveDevice<BUS, NoPin, super::NoDelay> {
/// 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<BUS, CS, D> ErrorType for ExclusiveDevice<BUS, CS, D>
where
BUS: ErrorType,
Expand Down
24 changes: 24 additions & 0 deletions embedded-hal/src/digital.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,3 +222,27 @@ impl<T: InputPin + ?Sized> 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(())
}
}
Comment on lines +239 to +248
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess also implement all the other digital traits for this type?

Copy link
Author

@uliano uliano Feb 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Rahix what's the use case for a non existent InputPin? what is the value is supposed to return?