sfc_core/lib.rs
1//! # SFC-Core
2//! This library provides shared types and utilities for controlling Sensirions Mass Flow Controllers. Currently it is used by Sfc6xxx-rs and Sfc5xxx-rs
3//! ## Features
4//! - Translating to and from SHDLC in the [shdlc] module
5//! - Handling Shared Device Errors in the [error] module
6//! - Handling common units across devices in the [gasunit] module
7pub mod gasunit;
8pub mod shdlc;
9pub mod error;