pub mod devices; #[macro_export] macro_rules! debug_println { ($($args:tt)*) => { #[cfg(debug_assertions)] println!($($args)*); }; }