-
Notifications
You must be signed in to change notification settings - Fork 134
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
[rpi] Adds basic support for GPIO on Raspberry Pi boards #444
Conversation
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.
Nice job! I didn't expect so few changes to get this to work, but then again Linux is doing all the heavy lifting here.
Thanks! Yeah, it is mostly Linux and WiringPi which solved the hard stuff, this is mostly a wrapper... Anyway, I tested the BitBangSPI implementation with this and that worked fine. Might be the easiest way to run hardware driver tests (if we ever get to setting up a CI for that) |
https://circleci.com/gh/modm-io/modm/20845:
|
Ready to merge |
Could you squash and rebase your commits? |
I’ll rebase/merge it later. |
2d4e914
to
d3496a3
Compare
Restructured commits and fixed a small refactoring bug, I'll merge once the CI passes. |
The purpose of this is to simplify driver development, using bitbang SPI&I2C on the RPi.
It is essentially just a wrapper around WiringPi.