-
Notifications
You must be signed in to change notification settings - Fork 230
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
base: master
Are you sure you want to change the base?
Added two new constructors to ExclusiveDevice to allow for SPI devices that don't require a CS pin #650
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess also implement all the other There was a problem hiding this comment. Choose a reason for hiding this commentThe 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? |
There was a problem hiding this comment.
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
Less readable, but avoids dependency-bloat... Not sure what the official stance of e-h on that topic is...
There was a problem hiding this comment.
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.