mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 04:40:52 +00:00
1.8 KiB
1.8 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
Added
defmt
feature andFlashStorage
,FlashStorageError
now implementsDefmt
(#4127)Drop
impl forFlashStorage
(#4132)FlashStorage::new()
now takes aFlash
argument (#4173)
Changed
Fixed
Removed
Default
impl forFlashStorage
(#4132)
[v0.8.0] - 2025-09-10
Added
- Added strategies for dealing with multi-core systems (#4082)
v0.7.0 - 2025-07-16
Fixed
- Fix incorrect usage of MaybeUninit (#3677)
- Use
libesp_rom.a
from ESP-IDF on ESP32 as a replacement for our incomplete and less accurate port (#3688)
v0.6.0 - 2025-06-03
Changed
- Bump Rust edition to 2024, bump MSRV to 1.86. (#3391, #3560)
- The
low-level
feature has been removed, the gated API is always available (#3425)
Removed
- The
storage
andnor-flash
features have been removed, the related functionality is now always available. (#3431)
0.5.0 - 2025-02-24
Changed
- Bump MSRV to 1.84 (#2951)
- Add support for 32MB flash (#3163)
0.4.0 - 2024-11-20
Added
- Added trait MultiwriteNorFlash to FlashStorage (#2478)