Update to latest release (0.6.0) for embassy-executor in esp-embassy-hal (fixes #1941) (#1942)

* Updated to latest release (`0.6.0`) for `embassy-executor`

* update changelog

* update hil-test version of embassy-executor to 0.6.0

* update embassy-executor in `examples`

* reflect esp_hal change in `OneShotTimer` to not have a lifetime.

* update changelog

* revert OneShotTimer changes
This commit is contained in:
Sycrosity 2024-08-14 14:45:46 +02:00 committed by GitHub
parent 1173aac945
commit c83d1de974
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 3 deletions

View File

@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Updated to latest release (`0.6.0`) for `embassy-executor` (#1942)
### Fixed ### Fixed
- Fixed a bug where the timeout was huge whenever the timestamp at the time of scheduling was already in the past (#1875) - Fixed a bug where the timeout was huge whenever the timestamp at the time of scheduling was already in the past (#1875)

View File

@ -15,7 +15,7 @@ features = ["esp32c6"]
critical-section = "1.1.2" critical-section = "1.1.2"
defmt = { version = "0.3.8", optional = true } defmt = { version = "0.3.8", optional = true }
document-features = "0.2.10" document-features = "0.2.10"
embassy-executor = { version = "0.5.0", optional = true } embassy-executor = { version = "0.6.0", optional = true }
embassy-time-driver = { version = "0.1.0", features = [ "tick-hz-1_000_000" ] } embassy-time-driver = { version = "0.1.0", features = [ "tick-hz-1_000_000" ] }
esp-hal = { version = "0.19.0", path = "../esp-hal" } esp-hal = { version = "0.19.0", path = "../esp-hal" }
log = { version = "0.4.22", optional = true } log = { version = "0.4.22", optional = true }

View File

@ -13,7 +13,7 @@ cfg-if = "1.0.0"
critical-section = "1.1.2" critical-section = "1.1.2"
crypto-bigint = { version = "0.5.5", default-features = false } crypto-bigint = { version = "0.5.5", default-features = false }
elliptic-curve = { version = "0.13.8", default-features = false, features = ["sec1"] } elliptic-curve = { version = "0.13.8", default-features = false, features = ["sec1"] }
embassy-executor = { version = "0.5.0", features = ["task-arena-size-40960"] } embassy-executor = { version = "0.6.0", features = ["task-arena-size-40960"] }
embassy-futures = "0.1.1" embassy-futures = "0.1.1"
embassy-net = { version = "0.4.0", features = [ "tcp", "udp", "dhcpv4", "medium-ethernet"] } embassy-net = { version = "0.4.0", features = [ "tcp", "udp", "dhcpv4", "medium-ethernet"] }
embassy-sync = "0.6.0" embassy-sync = "0.6.0"

View File

@ -145,7 +145,7 @@ static_cell = { version = "2.1.0", features = ["nightly"] }
[dev-dependencies] [dev-dependencies]
crypto-bigint = { version = "0.5.5", default-features = false } crypto-bigint = { version = "0.5.5", default-features = false }
elliptic-curve = { version = "0.13.8", default-features = false, features = ["sec1"] } elliptic-curve = { version = "0.13.8", default-features = false, features = ["sec1"] }
embassy-executor = { version = "0.5.0", default-features = false } embassy-executor = { version = "0.6.0", default-features = false }
# Add the `embedded-test/defmt` feature for more verbose testing # Add the `embedded-test/defmt` feature for more verbose testing
embedded-test = { version = "0.4.0", default-features = false } embedded-test = { version = "0.4.0", default-features = false }
hex-literal = "0.4.1" hex-literal = "0.4.1"