lis2dw12_pid_rs/lib.rs
1#![no_std]
2
3// Compile-time assertion: async and blocking features must not be enabled together
4#[cfg(all(feature = "async", feature = "blocking"))]
5compile_error!("Features 'async' and 'blocking' cannot be enabled at the same time.");
6
7extern crate alloc;
8
9pub mod error;
10pub mod lis2dw12;
11pub mod reg;
12pub mod transport;