1#![cfg_attr(feature = "no_std", no_std)] 2 3// Common features for both master device and slave device 4mod common; 5pub use common::*; 6 7/// Slave device relative features 8#[cfg(feature = "slave")] 9pub mod slave;