aboutsummaryrefslogtreecommitdiff
path: root/cyw43-pio
diff options
context:
space:
mode:
author9names <[email protected]>2025-03-09 11:43:10 +1100
committer9names <[email protected]>2025-03-09 14:37:08 +1100
commitb00daafd3e9cba888d4b782d06fddc5363b3197d (patch)
tree87d1c74ee5232e9d61131b588e573851a9f26032 /cyw43-pio
parent37291399152ccf58049484c875a5171257c3286b (diff)
rp/pio: Update cyw43-pio to use new version of embassy-rp
Diffstat (limited to 'cyw43-pio')
-rw-r--r--cyw43-pio/CHANGELOG.md2
-rw-r--r--cyw43-pio/Cargo.toml4
2 files changed, 4 insertions, 2 deletions
diff --git a/cyw43-pio/CHANGELOG.md b/cyw43-pio/CHANGELOG.md
index e65ca5679..4d56973df 100644
--- a/cyw43-pio/CHANGELOG.md
+++ b/cyw43-pio/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## Unreleased 8## Unreleased
9 9
10- Update embassy-rp to 0.4.0
11
10## 0.3.0 - 2025-01-05 12## 0.3.0 - 2025-01-05
11 13
12- Update embassy-time to 0.4.0 14- Update embassy-time to 0.4.0
diff --git a/cyw43-pio/Cargo.toml b/cyw43-pio/Cargo.toml
index 2397c76d3..600caf5ed 100644
--- a/cyw43-pio/Cargo.toml
+++ b/cyw43-pio/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "cyw43-pio" 2name = "cyw43-pio"
3version = "0.3.0" 3version = "0.4.0"
4edition = "2021" 4edition = "2021"
5description = "RP2040 PIO SPI implementation for cyw43" 5description = "RP2040 PIO SPI implementation for cyw43"
6keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"] 6keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]
@@ -11,7 +11,7 @@ documentation = "https://docs.embassy.dev/cyw43-pio"
11 11
12[dependencies] 12[dependencies]
13cyw43 = { version = "0.3.0", path = "../cyw43" } 13cyw43 = { version = "0.3.0", path = "../cyw43" }
14embassy-rp = { version = "0.3.0", path = "../embassy-rp" } 14embassy-rp = { version = "0.4.0", path = "../embassy-rp" }
15fixed = "1.23.1" 15fixed = "1.23.1"
16defmt = { version = "0.3", optional = true } 16defmt = { version = "0.3", optional = true }
17 17