Skip to content

Commit 7dfb6f7

Browse files
authored
Merge pull request #3729 from embassy-rs/update-nrf-rp
Prepare nrf and rp hals for release
2 parents b33949e + 209183e commit 7dfb6f7

File tree

31 files changed

+108
-61
lines changed

31 files changed

+108
-61
lines changed

cyw43-pio/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.3.0 - 2025-01-05
11+
12+
- Update embassy-time to 0.4.0
13+
- Update cyw43 to 0.3.0
14+
- Update embassy-rp to 0.3.0
15+
1016
## 0.2.0 - 2024-08-05
1117

1218
- Update to cyw43 0.2.0

cyw43-pio/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cyw43-pio"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "RP2040 PIO SPI implementation for cyw43"
66
keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]
@@ -10,8 +10,8 @@ repository = "https://github.com/embassy-rs/embassy"
1010
documentation = "https://docs.embassy.dev/cyw43-pio"
1111

1212
[dependencies]
13-
cyw43 = { version = "0.2.0", path = "../cyw43" }
14-
embassy-rp = { version = "0.2.0", path = "../embassy-rp" }
13+
cyw43 = { version = "0.3.0", path = "../cyw43" }
14+
embassy-rp = { version = "0.3.0", path = "../embassy-rp" }
1515
pio-proc = "0.2"
1616
pio = "0.2.1"
1717
fixed = "1.23.1"

cyw43/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.3.0 - 2025-01-05
11+
12+
- Update `embassy-time` to 0.4.0
13+
- Add Bluetooth support.
14+
- Add WPA3 support.
15+
- Expand wifi security configuration options.
16+
1017
## 0.2.0 - 2024-08-05
1118

1219
- Update to new versions of embassy-{time,sync}

cyw43/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cyw43"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Rust driver for the CYW43439 WiFi chip, used in the Raspberry Pi Pico W."
66
keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]

cyw43/README.md

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,36 @@
11
# cyw43
22

3-
Rust driver for the CYW43439 wifi chip, used in the Raspberry Pi Pico W. Implementation based on [Infineon/wifi-host-driver](https://github.com/Infineon/wifi-host-driver).
3+
Rust driver for the CYW43439 wifi+bluetooth chip. Implementation based on [Infineon/wifi-host-driver](https://github.com/Infineon/wifi-host-driver).
44

5-
## Current status
5+
Works on the following boards:
66

7-
Working:
8-
9-
- Station mode (joining an AP).
10-
- AP mode (creating an AP)
11-
- Scanning
12-
- Sending and receiving Ethernet frames.
13-
- Using the default MAC address.
14-
- [`embassy-net`](https://embassy.dev) integration.
15-
- RP2040 PIO driver for the nonstandard half-duplex SPI used in the Pico W.
16-
- Using IRQ for device events
17-
- GPIO support (for LED on the Pico W)
7+
- Raspberry Pi Pico W (RP2040)
8+
- Raspberry Pi Pico 2 W (RP2350A)
9+
- Pimoroni Pico Plus 2 W (RP2350B)
10+
- Any board with Raspberry Pi RM2 radio module.
11+
- Any board with the CYW43439 chip, and possibly others if the protocol is similar enough.
1812

19-
TODO:
13+
## Features
2014

21-
- Setting a custom MAC address.
22-
- Bus sleep (for power consumption optimization)
15+
Working:
2316

24-
## Running the examples
17+
- WiFi support
18+
- Station mode (joining an AP).
19+
- AP mode (creating an AP)
20+
- Scanning
21+
- Sending and receiving Ethernet frames.
22+
- Using the default MAC address.
23+
- [`embassy-net`](https://embassy.dev) integration.
24+
- RP2040 PIO driver for the nonstandard half-duplex SPI used in the Pico W.
25+
- Using IRQ for device events, no busy polling.
26+
- GPIO support (for LED on the Pico W).
27+
- Bluetooth support
28+
- Bluetooth Classic + LE HCI commands.
29+
- Concurrent operation with WiFi.
30+
- Implements the [bt-hci](https://crates.io/crates/bt-hci) controller traits.
31+
- Works with the [TrouBLE](https://github.com/embassy-rs/trouble) bluetooth LE stack. Check its repo for examples using `cyw43`.
32+
33+
## Running the WiFi examples
2534

2635
- Install `probe-rs` following the instructions at <https://probe.rs>.
2736
- `cd examples/rp`

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.2.0", path = "../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
11+
embassy-nrf = { version = "0.3.0", 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "embassy-boot-nrf"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
description = "Bootloader lib for nRF chips"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/embassy-rs/embassy"
@@ -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.2.0", path = "../embassy-nrf", default-features = false }
28+
embassy-nrf = { version = "0.3.0", 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-boot-rp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "embassy-boot-rp"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
description = "Bootloader lib for RP2040 chips"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/embassy-rs/embassy"
@@ -25,7 +25,7 @@ defmt = { version = "0.3", optional = true }
2525
log = { version = "0.4", optional = true }
2626

2727
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
28-
embassy-rp = { version = "0.2.0", path = "../embassy-rp", default-features = false }
28+
embassy-rp = { version = "0.3.0", path = "../embassy-rp", default-features = false }
2929
embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
3030
embassy-time = { version = "0.4.0", path = "../embassy-time" }
3131

embassy-net-nrf91/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ log = [ "dep:log" ]
1717
defmt = { version = "0.3", optional = true }
1818
log = { version = "0.4.14", optional = true }
1919

20-
nrf-pac = { git = "https://github.com/embassy-rs/nrf-pac", rev = "52e3a757f06035c94291bfc42b0c03f71e4d677e" }
20+
nrf-pac = "0.1.0"
2121
cortex-m = "0.7.7"
2222

2323
embassy-time = { version = "0.4.0", path = "../embassy-time" }

embassy-nrf/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.3.0 - 2025-01-06
11+
12+
- Updated `embassy-time` to v0.4
13+
- Add basic nrf54 support
14+
- Switch to use `nrf-pac` chiptool-based PAC
15+
- Fix bug where timer alarm was not scheduled if interrupted
16+
- Add RESET operations helpers for nrf5340
17+
- Allow debug access from firmware for nrf54l
18+
- Add trait `embedded_io_async` to uarte
19+
- Add system off and wake-on-field for nrf
20+
- Use inline const for initializing arrays
21+
- Add NFCT driver and related changes for nrf
22+
- Add support for transactions to Twim (embassy-nrf)
23+
- Fix build issues related to nrf9120 features
24+
- Disconnect input and fix bad pin assignment in nrf/pwm
25+
1026
## 0.2.0 - 2024-08-05
1127

1228
- Support for NRF chips:

embassy-nrf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-nrf"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Embassy Hardware Abstraction Layer (HAL) for nRF series microcontrollers"
@@ -148,7 +148,7 @@ embedded-hal-async = { version = "1.0" }
148148
embedded-io = { version = "0.6.0" }
149149
embedded-io-async = { version = "0.6.1" }
150150

151-
nrf-pac = { git = "https://github.com/embassy-rs/nrf-pac", rev = "52e3a757f06035c94291bfc42b0c03f71e4d677e" }
151+
nrf-pac = "0.1.0"
152152

153153
defmt = { version = "0.3", optional = true }
154154
bitflags = "2.4.2"

embassy-rp/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.3.0 - 2025-01-05
11+
12+
- Updated `embassy-time` to v0.4
13+
- Initial rp235x support
14+
- Setup timer0 tick when initializing clocks
15+
- Allow separate control of duty cycle for each channel in a pwm slice by splitting the Pwm driver.
16+
- Implement `embedded_io::Write` for Uart<'d, T: Instance, Blocking> and UartTx<'d, T: Instance, Blocking>
17+
- Add `set_pullup()` to OutputOpenDrain.
18+
1019
## 0.2.0 - 2024-08-05
1120

1221
- Add read_to_break_with_count

embassy-rp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-rp"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 microcontroller"
@@ -132,7 +132,7 @@ embedded-storage-async = { version = "0.4.1" }
132132
rand_core = "0.6.4"
133133
fixed = "1.28.0"
134134

135-
rp-pac = { git = "https://github.com/embassy-rs/rp-pac.git", rev = "a7f42d25517f7124ad3b4ed492dec8b0f50a0e6c", feature = ["rt"] }
135+
rp-pac = { version = "7.0.0", feature = ["rt"] }
136136

137137
embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] }
138138
embedded-hal-1 = { package = "embedded-hal", version = "1.0" }

embassy-rp/src/gpio.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -634,10 +634,10 @@ impl<'d> Flex<'d> {
634634
pub fn set_drive_strength(&mut self, strength: Drive) {
635635
self.pin.pad_ctrl().modify(|w| {
636636
w.set_drive(match strength {
637-
Drive::_2mA => pac::pads::vals::Drive::_2MA,
638-
Drive::_4mA => pac::pads::vals::Drive::_4MA,
639-
Drive::_8mA => pac::pads::vals::Drive::_8MA,
640-
Drive::_12mA => pac::pads::vals::Drive::_12MA,
637+
Drive::_2mA => pac::pads::vals::Drive::_2M_A,
638+
Drive::_4mA => pac::pads::vals::Drive::_4M_A,
639+
Drive::_8mA => pac::pads::vals::Drive::_8M_A,
640+
Drive::_12mA => pac::pads::vals::Drive::_12M_A,
641641
});
642642
});
643643
}

embassy-rp/src/pio/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,10 @@ impl<'l, PIO: Instance> Pin<'l, PIO> {
230230
pub fn set_drive_strength(&mut self, strength: Drive) {
231231
self.pin.pad_ctrl().modify(|w| {
232232
w.set_drive(match strength {
233-
Drive::_2mA => pac::pads::vals::Drive::_2MA,
234-
Drive::_4mA => pac::pads::vals::Drive::_4MA,
235-
Drive::_8mA => pac::pads::vals::Drive::_8MA,
236-
Drive::_12mA => pac::pads::vals::Drive::_12MA,
233+
Drive::_2mA => pac::pads::vals::Drive::_2M_A,
234+
Drive::_4mA => pac::pads::vals::Drive::_4M_A,
235+
Drive::_8mA => pac::pads::vals::Drive::_8M_A,
236+
Drive::_12mA => pac::pads::vals::Drive::_12M_A,
237237
});
238238
});
239239
}

examples/boot/application/nrf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ 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.2.0", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", ] }
11+
embassy-nrf = { version = "0.3.0", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", ] }
1212
embassy-boot = { version = "0.4.0", path = "../../../../embassy-boot", features = [] }
13-
embassy-boot-nrf = { version = "0.3.0", path = "../../../../embassy-boot-nrf", features = [] }
13+
embassy-boot-nrf = { version = "0.4.0", path = "../../../../embassy-boot-nrf", features = [] }
1414
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }
1515

1616
defmt = { version = "0.3", optional = true }

examples/boot/application/rp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ 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-rp = { version = "0.2.0", path = "../../../../embassy-rp", features = ["time-driver", "rp2040"] }
12-
embassy-boot-rp = { version = "0.3.0", path = "../../../../embassy-boot-rp", features = [] }
11+
embassy-rp = { version = "0.3.0", path = "../../../../embassy-rp", features = ["time-driver", "rp2040"] }
12+
embassy-boot-rp = { version = "0.4.0", path = "../../../../embassy-boot-rp", features = [] }
1313
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }
1414

1515
defmt = "0.3"

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.2.0", path = "../../embassy-nrf", features = ["nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac"] }
21+
embassy-nrf = { version = "0.3.0", 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.2.0", path = "../../embassy-nrf", features = ["defmt", "nrf51", "gpiote", "time-driver-rtc1", "unstable-pac", "time", "rt"] }
10+
embassy-nrf = { version = "0.3.0", 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.2.0", path = "../../embassy-nrf", features = ["defmt", "nrf52810", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
12+
embassy-nrf = { version = "0.3.0", 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.2.0", path = "../../embassy-nrf", features = [ "defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
14+
embassy-nrf = { version = "0.3.0", 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.2.0", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
12+
embassy-nrf = { version = "0.3.0", 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"] }

examples/nrf5340/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", "defmt"] }
1111
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
12-
embassy-nrf = { version = "0.2.0", path = "../../embassy-nrf", features = ["defmt", "nrf5340-app-s", "time-driver-rtc1", "gpiote", "unstable-pac"] }
12+
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["defmt", "nrf5340-app-s", "time-driver-rtc1", "gpiote", "unstable-pac"] }
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-async = { version = "0.6.1" }

examples/nrf54l15/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-32768", "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.2.0", path = "../../embassy-nrf", features = ["defmt", "nrf54l15-app-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
10+
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["defmt", "nrf54l15-app-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1111

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

examples/nrf9151/ns/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-32768", "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.2.0", path = "../../../embassy-nrf", features = ["defmt", "nrf9120-ns", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
10+
embassy-nrf = { version = "0.3.0", path = "../../../embassy-nrf", features = ["defmt", "nrf9120-ns", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1111

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

examples/nrf9151/s/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-32768", "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.2.0", path = "../../../embassy-nrf", features = ["defmt", "nrf9120-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
10+
embassy-nrf = { version = "0.3.0", path = "../../../embassy-nrf", features = ["defmt", "nrf9120-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1111

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

examples/nrf9160/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-32768", "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.2.0", path = "../../embassy-nrf", features = ["defmt", "nrf9160-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
10+
embassy-nrf = { version = "0.3.0", path = "../../embassy-nrf", features = ["defmt", "nrf9160-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1111
embassy-net-nrf91 = { version = "0.1.0", path = "../../embassy-net-nrf91", features = ["defmt"] }
1212
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "proto-ipv4", "medium-ip"] }
1313

0 commit comments

Comments
 (0)