libgpiod icon indicating copy to clipboard operation
libgpiod copied to clipboard

This is a mirror of the original repository over at kernel.org. This github page is for discussions and issue reporting only. PRs can be discussed here but the patches need to go through the linux-gpi...

Results 38 libgpiod issues
Sort by recently updated
recently updated
newest added

As I regularly contribute to Buildroot, I monitor their mailing list for submissions. This came in yesterday: https://lists.buildroot.org/pipermail/buildroot/2025-November/790133.html Buildroot has a make target that aggregates all of the license files...

I'd like to be able to run gpiomon indefinitely while also being able to detect if it's no longer responding or stuck. In my linux service I want to feed...

I'd like an optional parameter e.g. `gpiomon --initial-state` to output the initial state `active` or `inactive`. Just as gpioget would report. When using gpiomon in scripts there is always a...

enhancement

There are a number of places where `malloc`+`memset` are used to initialize a chunk of memory that could be replaced with a call to `calloc`. Since we're not allocating large...

Per https://devguide.python.org/versions/ Python 3.9 goes EOL this October (2025). Maintaining the bindings for 3.9 is not overly difficult at this point since we don't do anything super advanced in the...

On the Dragonboard 410C, the function gpiod_chip_get_line_info can't access any of the pins of /dev/gpiochip0. It can open the chip (gpiod_chip_open) and get the info (gpiod_chip_get_info). Hardware works fine. Code...

We can alias types in python, so instead of littering the codebase with complex types like: ```python dict[Union[Iterable[Union[int, str]], int, str], Optional[LineSettings]] ``` Or when we move to only support...