gpiocdev-uapi 0.7.0

A low level library to access GPIO lines on Linux using the GPIO character device
Documentation
// SPDX-FileCopyrightText: 2023 Kent Gibson <warthog618@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

#[cfg(feature = "uapi_v1")]
mod common;

#[cfg(feature = "uapi_v1")]
mod v1 {
    use gpiocdev_uapi::v1::*;
    use gpiosim::{Bank, Direction, Level, Simpleton};
    use std::fs;

    mod get_chip_info;
    mod get_line_event;
    mod get_line_handle;
    mod get_line_info;
    mod get_line_values;
    mod set_line_config;
    mod set_line_values;
    mod unwatch_line_info;
    mod watch_line_info;
}