While the event_wait() method takes ::std::chrono::nanoseconds as the
timeout argument, we don't actually need to use the same type - we can
use less fine-grained duration types. Switch to using seconds in the
gpiomoncxx example to showcase this implicit conversion.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
});
for (;;) {
- auto events = lines.event_wait(::std::chrono::nanoseconds(1000000000));
+ auto events = lines.event_wait(::std::chrono::seconds(1));
if (events) {
for (auto& it: events)
print_event(it.event_read());