rsiot/components/cmp_linux_can/mod.rs
1//! Компонент cmp_linux_can для работы с интерфейсом CAN
2
3mod can_filter;
4mod can_frame;
5mod can_id;
6mod can_settings;
7mod can_socket;
8mod component;
9mod config;
10mod error;
11mod fn_process;
12mod task_interface_info;
13mod task_recv_from_can;
14mod task_send_to_can;
15mod task_setup_send_recv;
16
17pub use {
18 crate::components_config::can_general::*,
19 component::{COMPONENT_NAME, Cmp},
20 config::Config,
21 error::Error,
22};
23
24type Result<T> = std::result::Result<T, Error>;