6 releases
0.1.0 | Aug 19, 2024 |
---|---|
0.0.5 | Jan 22, 2023 |
0.0.3 | Nov 14, 2022 |
#409 in Hardware support
26 downloads per month
51KB
692 lines
PiFace Digital driver
A driver for the PiFace Digital I/O expander for the Raspberry Pi which is accessed over an SPI bus.
Example usage
See also the contents of the ${CARGO_MANIFEST_DIR}/examples
folder for more extensive examples.
use rppal_pfd::{ChipSelect, HardwareAddress, Level, PiFaceDigital, SpiBus, SpiMode};
// Create an instance of the driver for the device with the hardware address
// (A1, A0) of 0b00 on SPI bus 0 clocked at 100kHz. The address bits are set using
// `JP1` and `JP2` on the PiFace Digital board.
let mut pfd = PiFaceDigital::new(
HardwareAddress::new(0).expect("Invalid hardware address"),
SpiBus::Spi0,
ChipSelect::Cs0,
100_000,
SpiMode::Mode0,
).expect("Failed to create PiFace Digital");
pfd.init().expect("Failed to initialise PiFace Digital");
// Take ownership of the output pin on bit 4 of the device.
let pin = pfd
.get_output_pin(4)
.expect("Failed to get Pin");
// Set the pin to logic-level low.
pin.write(Level::Low).expect("Bad pin write");
Features
The crate implements the following features.
mockspi
The crate is compiled with all code that accesses the real Raspberry Pi hardware mocked out so that the code will compile and run successfully on non-Raspberry Pi hardware:
- The PiFaceDigital code to access the GPIO (used for handling interrupts from the MCP23S17) is entirely removed.
- The MCP23S17 code from the
rppal_mcp23s17
crate uses a mock SPI that provides for very simple setting of test data in the MCP23S17's registers and checking that the expected reads and writes have been undertaken.
Building
You are likely to want to cross-compile this code for your target Raspberry Pi. The
project includes a Makefile.toml
for use with
cargo-make
which has tasks that use the
cross
cross-compilation environment:
- rpi - build the debug build for the target Raspberry Pi.
- rpi-release - build the release build for the target Raspberry Pi.
- rpi-test - test target code under
qemu
emulation.
In your project you're likely to use a similar cross-compilation environment and invoke your build like:
cross build --target arm-unknown-linux-gnueabihf # First generation Raspberry Pi.
cross build --target armv7-unknown-linux-gnueabihf # Later Raspberry Pi versions.
When testing the underlying rppal-mcp23s17
crate will compile in a trivial mock SPI that allows you to write unit tests that will
run in the host environment without requiring target hardware. Similarly, this crate
will compile in an accessor function TODO
that your unit tests can access the mock SPI
to set up test data and to check that the I/O expander was configured as expected.
Concurrency Warning
Note that the rppal_mcp23s17
contained in the PiFaceDigital
is
!Send
so that the device can only be used within the
context of a single thread. However, there is nothing to stop separate instances on
separate threads accessing the same MCP23S17 device. However, when it comes to the
PiFace Digital itself, it needs to take ownership of the Raspberry PI's GPIO-25
pin which is used as the interrupt input. As it currently stands that has the effect
of enforcing the existence of just one PiFace Digital device on the system because
attempts to create a second device will fail with a "GPIO device busy" error.
Further work is necessary to allow a single process to share the interrupts; sharing between processes is likely always going to be impossible with this user-space architecture for the interrupts.
Acknowledgements
This library has taken a lot of inspiration and guidance from the design of the PiFace Digital I/O Python library.
This library has followed some of the API design patterns used in the RPPAL crate.
Thanks!
Dependencies
~0.8–1.4MB
~30K SLoC