https://github.com/openbmc/gpioplus
https://github.com/openbmc/gpioplus
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openbmc/gpioplus
- Owner: openbmc
- License: apache-2.0
- Created: 2018-08-27T13:10:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-10T19:23:38.000Z (over 1 year ago)
- Last Synced: 2025-04-06T17:37:39.769Z (over 1 year ago)
- Language: C++
- Size: 157 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gpioplus
gpioplus is a c++ wrapper around the linux gpio ioctl interface. It aims to
provide c++ ergonomics to the usage.
## Building
For a standard release build, you want something like:
```sh
meson setup -Dexamples=false -Dtests=disabled builddir
ninja -C builddir
ninja -C builddir install
```
For a test / debug build, a typical configuration is
```sh
meson setup -Dtests=enabled builddir
meson test -C builddir
```