Start work towards CRC_V2

This commit is contained in:
Joshua Salzedo
2021-09-26 18:26:20 -07:00
parent 7899d73359
commit afef19d813
2 changed files with 92 additions and 3 deletions

View File

@ -1,6 +1,9 @@
#[cfg_attr(crc_v1, path = "v1.rs")]
#[cfg_attr(crc_v2, path = "v2.rs")]
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")]
mod _version;
pub use _version::Crc;
pub use _version::Crc;