aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-stm32/CHANGELOG.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/embassy-stm32/CHANGELOG.md b/embassy-stm32/CHANGELOG.md
index 0c1c97665..89d38d879 100644
--- a/embassy-stm32/CHANGELOG.md
+++ b/embassy-stm32/CHANGELOG.md
@@ -5,10 +5,6 @@ All notable changes to this project will be documented in this file.
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7 7
8<!-- next-header -->
9### [Unreleased]
10
11* **Fix(stm32h5):** Prevent a HardFault crash on STM32H5 devices by changing `uid()` to return `[u8; 12]` by value instead of a reference. (Fixes #2696)
12## Unreleased - ReleaseDate 8## Unreleased - ReleaseDate
13 9
14- fix flash erase on L4 & L5 10- fix flash erase on L4 & L5
@@ -35,8 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35- feat: stm32/usart: add `eager_reads` option to control if buffered readers return as soon as possible or after more data is available ([#4668](https://github.com/embassy-rs/embassy/pull/4668)) 31- feat: stm32/usart: add `eager_reads` option to control if buffered readers return as soon as possible or after more data is available ([#4668](https://github.com/embassy-rs/embassy/pull/4668))
36- feat: stm32/usart: add `de_assertion_time` and `de_deassertion_time` config options 32- feat: stm32/usart: add `de_assertion_time` and `de_deassertion_time` config options
37- change: stm32/uart: BufferedUartRx now returns all available bytes from the internal buffer 33- change: stm32/uart: BufferedUartRx now returns all available bytes from the internal buffer
34- fix: Prevent a HardFault crash on STM32H5 devices by changing `uid()` to return `[u8; 12]` by value instead of a reference. (Fixes #2696)
38- change: timer: added output compare values 35- change: timer: added output compare values
39- feat: timer: add ability to set master mode 36- feat: timer: add ability to set master mode
37- fix: sdmmc: don't wait for DBCKEND flag on sdmmc_v2 devices as it never fires (Fixes #4723)
40 38
41## 0.4.0 - 2025-08-26 39## 0.4.0 - 2025-08-26
42 40