bindings: python: examples: fix potential glitch in gpioset.py
authorKent Gibson <warthog618@gmail.com>
Fri, 9 Jun 2023 15:36:06 +0000 (23:36 +0800)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 12 Jun 2023 14:29:22 +0000 (16:29 +0200)
commite13ac9764af3550b7ea6a37ae3f637f90421bd41
tree77cc0148fc7c19a6d86b09d43ed1fcbd1996bcec
parent9788bdd3d6791205431e65366dcc518446f7ca6a
bindings: python: examples: fix potential glitch in gpioset.py

gpioset.py requests lines without setting their output value, and so
sets them all inactive, and subsequently sets them to their requested
value. This can result in glitches on lines which were active and
are set active.

As this is example code, it is also important to demonstrate that the
output value can be set by the request itself.

Request the lines with the correct output values set in the request
itself.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/examples/gpioset.py