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

10 lines
152 B
Rust
Raw Normal View History

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