diff options
| author | Joshua Salzedo <[email protected]> | 2021-09-26 19:15:54 -0700 |
|---|---|---|
| committer | Joshua Salzedo <[email protected]> | 2021-09-26 19:15:54 -0700 |
| commit | e67af514e921b3b28b4c20a88554c4d7cbef7951 (patch) | |
| tree | 6470e3e585f03fc5c611f6a1f0fc436f2b7988cf | |
| parent | 642b0825a62a7d40c3496c32ac6abd8dce3e55bd (diff) | |
Fix v2/3 module paths
| -rw-r--r-- | embassy-stm32/src/crc/mod.rs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/embassy-stm32/src/crc/mod.rs b/embassy-stm32/src/crc/mod.rs index 42f131af7..597e7cf3a 100644 --- a/embassy-stm32/src/crc/mod.rs +++ b/embassy-stm32/src/crc/mod.rs | |||
| @@ -1,9 +1,6 @@ | |||
| 1 | use crate::peripherals::CRC; | 1 | #[cfg_attr(crc_v2, path = "v2.rs")] |
| 2 | 2 | #[cfg_attr(crc_v1, path = "v1.rs")] | |
| 3 | 3 | #[cfg_attr(crc_v3, path = "v2.rs")] | |
| 4 | #[cfg_attr(crc_v2, path = "v1.rs")] | ||
| 5 | #[cfg_attr(crc_v1, path = "v2.rs")] | ||
| 6 | #[cfg_attr(crc_v3, path = "v3.rs")] | ||
| 7 | mod _version; | 4 | mod _version; |
| 8 | 5 | ||
| 9 | pub use _version::Crc; \ No newline at end of file | 6 | pub use _version::Crc; \ No newline at end of file |
