Skip to content

Commit 0046f4d

Browse files
authored
Merge pull request #705 from jannic/v0.9-semver-compat
Make i2c::controller pub again
2 parents fbb7e79 + 0e0506c commit 0046f4d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rp2040-hal/src/i2c.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ use crate::{
5353
typelevel::Sealed,
5454
};
5555

56-
mod controller;
56+
/// Controller implementaion
57+
///
58+
/// This is only pub for historical reasons, to stay semver compatible with v0.9.0.
59+
/// It should be made private before releasing v0.10.0.
60+
pub mod controller;
5761
pub mod peripheral;
5862

5963
/// Pac I2C device

0 commit comments

Comments
 (0)