From 64d631c10a68c657dcd22da4908156342b6a4674 Mon Sep 17 00:00:00 2001 From: Juraj Sadel Date: Fri, 2 Aug 2024 10:08:47 +0200 Subject: [PATCH] changelog --- esp-hal/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esp-hal/CHANGELOG.md b/esp-hal/CHANGELOG.md index 65fd89f3abe..22e6102437c 100644 --- a/esp-hal/CHANGELOG.md +++ b/esp-hal/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added new `Io::new_no_bind_interrupt` constructor (#1861) +- Added a `PeripheralClockControl::reset` to the driver constructors where missing (#1893) ### Changed @@ -18,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Allow DMA to/from psram for esp32s3 (#1827) - DMA buffers now don't require a static lifetime. Make sure to never `mem::forget` an in-progress DMA transfer (consider using `#[deny(clippy::mem_forget)]`) (#1837) +- Peripherals (where possible) are now explicitly reset and enabled in their constructors (#1893) ### Fixed