aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Salzedo <[email protected]>2021-09-27 11:17:31 -0700
committerJoshua Salzedo <[email protected]>2021-09-27 11:17:31 -0700
commit07e20a74431617c4c4130dec2e70f77a439baad9 (patch)
tree8ae4390248d42ecb1f21dfcc92b3657b40da8de6
parenta26ffeb84bf49af342526241feca83ba41fe5b53 (diff)
Pub use version-specific CRC symbols, not just the CRC struct.
-rw-r--r--embassy-stm32/src/crc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/crc/mod.rs b/embassy-stm32/src/crc/mod.rs
index 2ebebc935..63f7ad9ba 100644
--- a/embassy-stm32/src/crc/mod.rs
+++ b/embassy-stm32/src/crc/mod.rs
@@ -3,4 +3,4 @@
3#[cfg_attr(crc_v3, path = "v2v3.rs")] 3#[cfg_attr(crc_v3, path = "v2v3.rs")]
4mod _version; 4mod _version;
5 5
6pub use _version::Crc; 6pub use _version::*;