Skip to content

Commit 9d94d68

Browse files
committed
Create embassy-nrf 0.3.1
1 parent cd70c19 commit 9d94d68

File tree

16 files changed

+20
-15
lines changed

16 files changed

+20
-15
lines changed

docs/examples/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
[dependencies]
99
embassy-executor = { version = "0.7.0", path = "../../../embassy-executor", features = ["defmt", "arch-cortex-m", "executor-thread"] }
1010
embassy-time = { version = "0.4.0", path = "../../../embassy-time", features = ["defmt"] }
11-
embassy-nrf = { version = "0.3.0", path = "../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
11+
embassy-nrf = { version = "0.3.1", path = "../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
1212

1313
defmt = "0.3"
1414
defmt-rtt = "0.3"

embassy-boot-nrf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defmt = { version = "0.3", optional = true }
2525
log = { version = "0.4.17", optional = true }
2626

2727
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
28-
embassy-nrf = { version = "0.3.0", path = "../embassy-nrf", default-features = false }
28+
embassy-nrf = { version = "0.3.1", path = "../embassy-nrf", default-features = false }
2929
embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
3030
cortex-m = { version = "0.7.6" }
3131
cortex-m-rt = { version = "0.7" }

embassy-nrf/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.3.1 - 2025-01-09
11+
12+
- bugfix: nrf twim return errors in async\_wait instead of waiting indefinitely
13+
- bugfix: fix missing setting input as disconnected.
14+
1015
## 0.3.0 - 2025-01-06
1116

1217
Firstly, this release switches embassy-nrf to chiptool-based `nrf-pac`

embassy-nrf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-nrf"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Embassy Hardware Abstraction Layer (HAL) for nRF series microcontrollers"

examples/boot/application/nrf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
embassy-sync = { version = "0.6.1", path = "../../../../embassy-sync" }
99
embassy-executor = { version = "0.7.0", path = "../../../../embassy-executor", features = ["task-arena-size-16384", "arch-cortex-m", "executor-thread", "arch-cortex-m", "executor-thread"] }
1010
embassy-time = { version = "0.4.0", path = "../../../../embassy-time", features = [] }
11-
embassy-nrf = { version = "0.3.0", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", ] }
11+
embassy-nrf = { version = "0.3.1", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", ] }
1212
embassy-boot = { version = "0.4.0", path = "../../../../embassy-boot", features = [] }
1313
embassy-boot-nrf = { version = "0.4.0", path = "../../../../embassy-boot-nrf", features = [] }
1414
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }

examples/nrf-rtos-trace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ log = [
1818
embassy-sync = { version = "0.6.1", path = "../../embassy-sync" }
1919
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "rtos-trace"] }
2020
embassy-time = { version = "0.4.0", path = "../../embassy-time" }
21-
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac"] }
21+
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = ["nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac"] }
2222

2323
cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
2424
cortex-m-rt = "0.7.0"

examples/nrf51/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-4096", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
99
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
10-
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["defmt", "nrf51", "gpiote", "time-driver-rtc1", "unstable-pac", "time", "rt"] }
10+
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = ["defmt", "nrf51", "gpiote", "time-driver-rtc1", "unstable-pac", "time", "rt"] }
1111

1212
defmt = "0.3"
1313
defmt-rtt = "0.4"

examples/nrf52810/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
99
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1010
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-8192", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1111
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
12-
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["defmt", "nrf52810", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
12+
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = ["defmt", "nrf52810", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1313

1414
defmt = "0.3"
1515
defmt-rtt = "0.4"

examples/nrf52840-rtic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1111
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = [ "defmt", "defmt-timestamp-uptime"] }
1313
embassy-time-queue-utils = { version = "0.1", path = "../../embassy-time-queue-utils", features = ["generic-queue-8"] }
14-
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = [ "defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
14+
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = [ "defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1515

1616
defmt = "0.3"
1717
defmt-rtt = "0.4"

examples/nrf52840/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
99
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1010
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1111
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
12-
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
12+
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] }
1414
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embedded-io = { version = "0.6.0", features = ["defmt-03"] }

0 commit comments

Comments
 (0)