Skip to content
Draft

RMII #4470

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions esp-hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Add RMII peripheral support (#4470)

### Changed

Expand Down
2 changes: 2 additions & 0 deletions esp-hal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
$(#[$meta])*
#[cfg(feature = "unstable")]
#[cfg_attr(docsrs, doc(cfg(feature = "unstable")))]
pub mod $module;

Check failure on line 269 in esp-hal/src/lib.rs

View workflow job for this annotation

GitHub Actions / esp-hal

missing documentation for a module
)*
};
}
Expand Down Expand Up @@ -365,6 +365,8 @@
pub mod delay;
#[cfg(soc_has_ecc)]
pub mod ecc;
#[cfg(all(soc_has_emac_dma, soc_has_emac_ext, soc_has_emac_mac))]
pub mod rmii;
#[cfg(soc_has_hmac)]
pub mod hmac;
#[cfg(any(soc_has_i2s0, soc_has_i2s1))]
Expand Down
Loading
Loading