Fix v2/3 module paths

This commit is contained in:
Joshua Salzedo 2021-09-26 19:15:54 -07:00
parent 642b0825a6
commit e67af514e9
No known key found for this signature in database
GPG key ID: C3D0EB484493B731

View file

@ -1,9 +1,6 @@
use crate::peripherals::CRC;
#[cfg_attr(crc_v2, path = "v1.rs")]
#[cfg_attr(crc_v1, path = "v2.rs")]
#[cfg_attr(crc_v3, path = "v3.rs")]
#[cfg_attr(crc_v2, path = "v2.rs")]
#[cfg_attr(crc_v1, path = "v1.rs")]
#[cfg_attr(crc_v3, path = "v2.rs")]
mod _version;
pub use _version::Crc;