From: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> gpiosetcxx 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. Suggested-by: Kent Gibson <warthog618@xxxxxxxxx> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> --- bindings/cxx/examples/gpiosetcxx.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bindings/cxx/examples/gpiosetcxx.cpp b/bindings/cxx/examples/gpiosetcxx.cpp index dde5379..f46cb85 100644 --- a/bindings/cxx/examples/gpiosetcxx.cpp +++ b/bindings/cxx/examples/gpiosetcxx.cpp @@ -44,10 +44,9 @@ int main(int argc, char **argv) ::gpiod::line_settings() .set_direction(::gpiod::line::direction::OUTPUT) ) + .set_output_values(values) .do_request(); - request.set_values(values); - ::std::cin.get(); return EXIT_SUCCESS; -- 2.39.2