Skip to content

Commit eac500a

Browse files
datdenkiknietJohannes Draaijer
authored andcommitted
Update docs & CHANGELOG
1 parent e946bf7 commit eac500a

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
## Unreleased
2-
* Add `RTIC` example
3-
* Use `ieee802_3_miim` for SMI access.
2+
* General
3+
* Remove the `smi` feature and always enable miim/smi. Use `ieee802_3_miim` for SMI access
4+
* Split MAC and DMA setup into their own separate modules
5+
* Examples:
6+
* Switch to `defmt` as logger
7+
* Use `probe-run` as runner
8+
* Ensure that all examples build (and hopefully run) for all supported MCUs
9+
* Add more extensive example run and build docs
10+
* Remove arp-smoltcp example
11+
* Add `rtic-echo` example
12+
* Use a more simple `memory.x` that works for all supported MCUs
413

514
## [0.3.0](https://github.com/stm32-rs/stm32-eth/tree/v0.3.0)
615

src/mac/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ impl EthernetMAC {
4141
/// HCLK must be at least 25MHz, else this function will return `Err(WrongClock)`.
4242
///
4343
/// This method does not initialise the external PHY. However, you can access SMI
44-
/// `read` and `write` functions through the `smi` and `with_smi` functions.
44+
/// `read` and `write` functions through the [`Self::mii`] and [`Self::with_miim`] functions.
4545
///
46-
/// Additionally, an optional `impl` of the [`ieee802_3_miim::Miim`] trait is available
47-
/// with the `ieee802_3_miim` feature (enabled by default), for PHY communication.
46+
/// Additionally, an `impl` of the [`ieee802_3_miim::Miim`] trait is available
47+
/// for PHY communication.
4848
pub(crate) fn new(
4949
eth_mac: ETHERNET_MAC,
5050
eth_mmc: ETHERNET_MMC,
@@ -188,7 +188,7 @@ where
188188
/// To interact with a connected Phy, use the `read` and `write` functions.
189189
///
190190
/// Functionality for interacting with PHYs from the `ieee802_3_miim` crate
191-
/// is available if the default feature `ieee802_3_miim` is enabled.
191+
/// is available.
192192
pub fn new(eth_mac: EthernetMAC, mdio: MDIO, mdc: MDC) -> Self {
193193
Self { eth_mac, mdio, mdc }
194194
}

0 commit comments

Comments
 (0)