diff --git a/esp-hal/CHANGELOG.md b/esp-hal/CHANGELOG.md index 305c4e81e2..a76f61129c 100644 --- a/esp-hal/CHANGELOG.md +++ b/esp-hal/CHANGELOG.md @@ -8,11 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- Add burst transfer support to DMA buffers (#2236) +- Add burst transfer support to DMA buffers (#2236) - `AnyPin` now implements `From>`. (#2326) - Added `degrade` function for SPI instances (SPI2, SPI3) to obtain `AnySpi`. (#2334) - - `Pins::steal()` to unsafely obtain GPIO. (#2335) ### Changed diff --git a/esp-hal/MIGRATING-0.21.md b/esp-hal/MIGRATING-0.21.md index d53540b1e2..5eeb638dea 100644 --- a/esp-hal/MIGRATING-0.21.md +++ b/esp-hal/MIGRATING-0.21.md @@ -39,7 +39,7 @@ peripherals: ``` Note that you may still specify the instance if you need to. To do this, we provide `_typed` -versions of the constructors (for example: `new_typed`, `new_half_duplkex_typed`). Please note that +versions of the constructors (for example: `new_typed`, `new_half_duplex_typed`). Please note that the peripheral instance has been moved to the last generic parameter position. ```rust