#pin #dummy #gpio-pin #io #gpio #hal

no-std dummy-pin

Dummy implementations of the input/output pin embedded-hal traits

4 releases (1 stable)

1.0.0 Jan 19, 2024
0.2.0-alpha.1 Aug 11, 2022
0.1.1 Apr 22, 2021
0.1.0 Mar 10, 2021

#1638 in Embedded development

Download history 21/week @ 2024-01-12 36/week @ 2024-01-19 10/week @ 2024-02-16 24/week @ 2024-02-23 10/week @ 2024-03-01 4/week @ 2024-03-08 1/week @ 2024-03-15 40/week @ 2024-03-29 11/week @ 2024-04-05

52 downloads per month
Used in 3 crates

MIT/Apache

13KB
118 lines

Dummy Input/Output Pin Implementations

crates.io Docs MSRV Build Status Coverage Status

This provides dummy implementations of the input/output pin embedded-hal traits. This is useful when dealing with setups where a certain pin is handled by hardware in a way that the software does not need to know about, for example.

In addition to the no-op, zero-cost DummyPin, this crate provides an implementation of LastStateDummyPin, which stores the last state set at runtime and returns it when read.

Usage

This example demonstrates how the same driver can operate with either a real or a dummy output pin.

use dummy_pin::DummyPin;
use embedded_hal::digital::OutputPin;
use linux_embedded_hal::SysfsPin;

struct Driver<P> {
    output: P,
}

impl<P, E> Driver<P>
where
    P: OutputPin<Error = E>,
{
    fn new(pin: P) -> Self {
        Driver { output: pin }
    }

    fn do_something(&mut self) -> Result<(), E> {
        // ...
        self.output.set_high()
    }
}

fn main() {
    // The same driver can operate with either a real or a dummy pin.
    let real_pin = SysfsPin::new(25);
    let mut driver_with_real_pin = Driver::new(real_pin);
    driver_with_real_pin.do_something().unwrap();

    let dummy_pin = DummyPin::new_low();
    let mut driver_with_dummy_pin = Driver::new(dummy_pin);
    driver_with_dummy_pin.do_something().unwrap();
}

Support

For questions, issues, feature requests, and other changes, please file an issue in the github project.

License

Licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~56KB