Skip to main content

rsiot/components/cmp_linux_gpio/
mod.rs

1//! Компонент для работы с GPIO на Linux
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7mod tasks;
8
9pub use {
10    component::{COMPONENT_NAME, Cmp},
11    config::{Config, ConfigGpioInput, ConfigGpioOutput},
12    error::Error,
13};
14
15type Result<T> = std::result::Result<T, Error>;