Skip to content

Commit df4585e

Browse files
ivmarkovCopilot
andauthored
Update several dependencies to their latest versions (#56)
* Enable rx_when_idle; handle radio TX failure notifications * Apply code review feedback Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update embassy-nrf * Update edge-nal --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 6ba22d9 commit df4585e

File tree

9 files changed

+227
-95
lines changed

9 files changed

+227
-95
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ members = [
66
]
77

88
exclude = ["examples", "xtask"]
9+
10+
[patch.crates-io]
11+
esp-hal = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
12+
esp-radio = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }

examples/esp/Cargo.lock

Lines changed: 69 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/esp/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ esp32h2 = ["esp-rtos/esp32h2", "esp-radio/esp32h2", "esp-backtrace/esp32h2", "es
3232

3333
force-generate-bindings = ["openthread/force-generate-bindings"]
3434

35+
[patch.crates-io]
36+
esp-hal = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
37+
esp-rtos = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
38+
esp-alloc = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
39+
esp-backtrace = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
40+
esp-println = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
41+
esp-radio = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
42+
esp-bootloader-esp-idf = { git = "https://github.com/esp-rs/esp-hal", rev = "e156b5453a8adc123b7a8b6aa08e0698ec87dfe8" }
43+
3544
[dependencies]
3645
embassy-executor = "0.9"
3746
embassy-sync = "0.7"

examples/nrf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ embassy-sync = { version = "0.7", features = ["defmt"] }
3838
embassy-futures = "0.1"
3939
embassy-time = { version = "0.5", features = ["defmt"] }
4040
embassy-net = { version = "0.7", features = ["defmt", "proto-ipv6", "medium-ip", "udp"] }
41-
embassy-nrf = { version = "0.8", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
41+
embassy-nrf = { version = "0.9", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
4242
defmt = "0.3"
4343
heapless = "0.8"
4444
critical-section = "1.1"

openthread/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ embassy-futures = "0.1"
3636
heapless = "0.8"
3737
bitflags = "2.5"
3838
embassy-net-driver-channel = { version = "0.3", optional = true }
39-
edge-nal = { version = "0.5", optional = true }
39+
edge-nal = { version = "0.6", optional = true }
4040
esp-radio = { version = "0.17", features = ["unstable", "ieee802154"], optional = true }
41-
embassy-nrf = { version = "0.8", optional = true }
41+
embassy-nrf = { version = "0.9", optional = true }
4242
portable-atomic = "1"

0 commit comments

Comments
 (0)