Migrated from uom to custom quantity implementation.

This commit is contained in:
Zachary Sunforge
2024-07-09 22:37:00 -07:00
parent 8a23429e5f
commit 0a8c897100
14 changed files with 604 additions and 115 deletions

View File

@ -1,4 +1,4 @@
#![no_std]
#![cfg_attr(not(feature = "std"), no_std)]
pub mod transducer;
pub mod control;
@ -7,5 +7,6 @@ pub mod error;
pub mod adc;
pub mod uom;
pub mod circuit;
pub mod quantity;
pub use error::CriticalError;