embassy/embassy-stm32/src/dma/mod.rs

10 lines
152 B
Rust
Raw Normal View History

2021-05-16 00:57:46 +00:00
#![macro_use]
2021-06-29 14:59:22 +00:00
#[cfg_attr(dma_v1, path = "v1.rs")]
#[cfg_attr(dma_v2, path = "v2.rs")]
2021-05-16 00:57:46 +00:00
mod _version;
#[cfg(dma)]
#[allow(unused)]
2021-05-16 00:57:46 +00:00
pub use _version::*;