Skip to content

Commit

Permalink
Merge pull request #705 from jannic/v0.9-semver-compat
Browse files Browse the repository at this point in the history
Make i2c::controller pub again
  • Loading branch information
jannic authored Nov 10, 2023
2 parents fbb7e79 + 0e0506c commit 0046f4d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rp2040-hal/src/i2c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ use crate::{
typelevel::Sealed,
};

mod controller;
/// Controller implementaion
///
/// This is only pub for historical reasons, to stay semver compatible with v0.9.0.
/// It should be made private before releasing v0.10.0.
pub mod controller;
pub mod peripheral;

/// Pac I2C device
Expand Down

0 comments on commit 0046f4d

Please sign in to comment.