8 lines
127 B
Rust
8 lines
127 B
Rust
#![no_std]
|
|
|
|
#[cfg(feature = "comms")]
|
|
pub mod comms;
|
|
#[cfg(feature = "stm32")]
|
|
pub mod stm32;
|
|
|
|
pub use physical::CriticalError; |