Skip to content

Commit 05c6640

Browse files
authored
Merge pull request #3955 from 9names/embassy-rp-0.4.0
rp: embassy-rp 0.4.0 release prep
2 parents a704c41 + 8f41a4d commit 05c6640

File tree

9 files changed

+18
-13
lines changed

9 files changed

+18
-13
lines changed

cyw43-pio/CHANGELOG.md

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

88
## Unreleased
99

10+
- Update embassy-rp to 0.4.0
11+
1012
## 0.3.0 - 2025-01-05
1113

1214
- Update embassy-time to 0.4.0

cyw43-pio/Cargo.toml

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

1212
[dependencies]
1313
cyw43 = { version = "0.3.0", path = "../cyw43" }
14-
embassy-rp = { version = "0.3.0", path = "../embassy-rp" }
14+
embassy-rp = { version = "0.4.0", path = "../embassy-rp" }
1515
fixed = "1.23.1"
1616
defmt = { version = "0.3", optional = true }
1717

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.4.0"
4+
version = "0.5.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.2", path = "../embassy-sync" }
28-
embassy-rp = { version = "0.3.0", path = "../embassy-rp", default-features = false }
28+
embassy-rp = { version = "0.4.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-rp/CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.4.0 - 2025-03-09
11+
1012
- Add PIO functions. ([#3857](https://github.com/embassy-rs/embassy/pull/3857))
1113
The functions added in this change are `get_addr` `get_tx_threshold`, `set_tx_threshold`, `get_rx_threshold`, `set_rx_threshold`, `set_thresholds`.
1214
- Expose the watchdog reset reason. ([#3877](https://github.com/embassy-rs/embassy/pull/3877))
1315
- Update pio-rs, reexport, move instr methods to SM. ([#3865](https://github.com/embassy-rs/embassy/pull/3865))
1416
- rp235x: add ImageDef features. ([#3890](https://github.com/embassy-rs/embassy/pull/3890))
1517
- doc: Fix "the the" ([#3903](https://github.com/embassy-rs/embassy/pull/3903))
18+
- pio: Add access to DMA engine byte swapping ([#3935](https://github.com/embassy-rs/embassy/pull/3935))
1619

1720
## 0.3.1 - 2025-02-06
1821

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.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 microcontroller"
@@ -164,7 +164,7 @@ embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
164164
embedded-hal-async = { version = "1.0" }
165165
embedded-hal-nb = { version = "1.0" }
166166

167-
pio = { git = "https://github.com/rp-rs/pio-rs", rev = "506a51b9bc135845e8544a0debd75847b73754dc" }
167+
pio = { version = "0.3" }
168168
rp2040-boot2 = "0.3"
169169
document-features = "0.2.10"
170170
sha2-const-stable = "0.1"

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.2", 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.3.0", path = "../../../../embassy-rp", features = ["time-driver", "rp2040"] }
12-
embassy-boot-rp = { version = "0.4.0", path = "../../../../embassy-boot-rp", features = [] }
11+
embassy-rp = { version = "0.4.0", path = "../../../../embassy-rp", features = ["time-driver", "rp2040"] }
12+
embassy-boot-rp = { version = "0.5.0", path = "../../../../embassy-boot-rp", features = [] }
1313
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }
1414

1515
defmt = "0.3"

examples/rp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal",
1010
embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
13-
embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp2040"] }
13+
embassy-rp = { version = "0.4.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp2040"] }
1414
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "icmp", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns", "proto-ipv4", "proto-ipv6", "multicast"] }
1616
embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
1717
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1818
embassy-usb-logger = { version = "0.4.0", path = "../../embassy-usb-logger" }
1919
cyw43 = { version = "0.3.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20-
cyw43-pio = { version = "0.3.0", path = "../../cyw43-pio", features = ["defmt"] }
20+
cyw43-pio = { version = "0.4.0", path = "../../cyw43-pio", features = ["defmt"] }
2121

2222
defmt = "0.3"
2323
defmt-rtt = "0.4"

examples/rp235x/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal",
1010
embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
13-
embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp235xa", "binary-info"] }
13+
embassy-rp = { version = "0.4.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp235xa", "binary-info"] }
1414
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns"] }
1616
embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
1717
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1818
embassy-usb-logger = { version = "0.4.0", path = "../../embassy-usb-logger" }
1919
cyw43 = { version = "0.3.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20-
cyw43-pio = { version = "0.3.0", path = "../../cyw43-pio", features = ["defmt"] }
20+
cyw43-pio = { version = "0.4.0", path = "../../cyw43-pio", features = ["defmt"] }
2121

2222
defmt = "0.3"
2323
defmt-rtt = "0.4"

tests/rp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ teleprobe-meta = "1.1"
1515
embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] }
1616
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] }
1717
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", ] }
18-
embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] }
18+
embassy-rp = { version = "0.4.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] }
1919
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
2020
embassy-net = { version = "0.7.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
2121
embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }

0 commit comments

Comments
 (0)