Fix v2/3 module paths
This commit is contained in:
parent
642b0825a6
commit
e67af514e9
1 changed files with 3 additions and 6 deletions
|
@ -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;
|
Loading…
Reference in a new issue