aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Salzedo <[email protected]>2021-09-26 17:26:33 -0700
committerJoshua Salzedo <[email protected]>2021-09-26 17:26:33 -0700
commitc892289b2c11b0c707ef2578583a249b05f779b2 (patch)
treefe57655aa11794b267f2b5a5e69079e93cef3abf
parent24dea91f5abdd4029c7c912dd01d92313da58df3 (diff)
Actually export CRC
-rw-r--r--embassy-stm32/src/crc/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-stm32/src/crc/mod.rs b/embassy-stm32/src/crc/mod.rs
index 02fa1278b..d8de4bd09 100644
--- a/embassy-stm32/src/crc/mod.rs
+++ b/embassy-stm32/src/crc/mod.rs
@@ -2,3 +2,5 @@
2#[cfg_attr(crc_v2, path = "v2.rs")] 2#[cfg_attr(crc_v2, path = "v2.rs")]
3#[cfg_attr(crc_v3, path = "v3.rs")] 3#[cfg_attr(crc_v3, path = "v3.rs")]
4mod _version; 4mod _version;
5
6pub use _version::Crc;