aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-08-05 12:26:17 +0000
committerGitHub <[email protected]>2024-08-05 12:26:17 +0000
commita94f197950189f9c835646186dfe78e6583bba8b (patch)
treef4c4a74d999ca5ef9ef2e118d4b9c4edeb3e7127
parent0f685761e09b1617e435de4e50986fe9a548502e (diff)
parent49a8cf251ba1357aa6ba7400e4c47d71e81e9f0c (diff)
Merge pull request #3230 from 9names/cyw43-release-0.2
Uprev cyw43 and cyw43-pio for embassy-rp 0.2 release
-rw-r--r--cyw43-pio/CHANGELOG.md17
-rw-r--r--cyw43-pio/Cargo.toml4
-rw-r--r--cyw43/CHANGELOG.md23
-rw-r--r--cyw43/Cargo.toml2
-rw-r--r--examples/rp/Cargo.toml4
5 files changed, 45 insertions, 5 deletions
diff --git a/cyw43-pio/CHANGELOG.md b/cyw43-pio/CHANGELOG.md
new file mode 100644
index 000000000..913f3515a
--- /dev/null
+++ b/cyw43-pio/CHANGELOG.md
@@ -0,0 +1,17 @@
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10## 0.2.0 - 2024-08-05
11
12- Update to cyw43 0.2.0
13- Update to embassy-rp 0.2.0
14
15## 0.1.0 - 2024-01-11
16
17- First release
diff --git a/cyw43-pio/Cargo.toml b/cyw43-pio/Cargo.toml
index 9c7acd779..1172d6c31 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.1.0" 3version = "0.2.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"]
@@ -15,7 +15,7 @@ documentation = "https://docs.embassy.dev/cyw43-pio"
15overclock = [] 15overclock = []
16 16
17[dependencies] 17[dependencies]
18cyw43 = { version = "0.1.0", path = "../cyw43" } 18cyw43 = { version = "0.2.0", path = "../cyw43" }
19embassy-rp = { version = "0.2.0", path = "../embassy-rp" } 19embassy-rp = { version = "0.2.0", path = "../embassy-rp" }
20pio-proc = "0.2" 20pio-proc = "0.2"
21pio = "0.2.1" 21pio = "0.2.1"
diff --git a/cyw43/CHANGELOG.md b/cyw43/CHANGELOG.md
new file mode 100644
index 000000000..1859f7317
--- /dev/null
+++ b/cyw43/CHANGELOG.md
@@ -0,0 +1,23 @@
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10## 0.2.0 - 2024-08-05
11
12- Update to new versions of embassy-{time,sync}
13- Add more fields to the BssInfo packet struct #2461
14- Extend the Scan API #2282
15- Reuse buf to reduce stack usage #2580
16- Add MAC address getter to cyw43 controller #2818
17- Add function to join WPA2 network with precomputed PSK. #2885
18- Add function to close soft AP. #3042
19- Fixing missing re-export #3211
20
21## 0.1.0 - 2024-01-11
22
23- First release
diff --git a/cyw43/Cargo.toml b/cyw43/Cargo.toml
index 3c90873de..654afe356 100644
--- a/cyw43/Cargo.toml
+++ b/cyw43/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "cyw43" 2name = "cyw43"
3version = "0.1.0" 3version = "0.2.0"
4edition = "2021" 4edition = "2021"
5description = "Rust driver for the CYW43439 WiFi chip, used in the Raspberry Pi Pico W." 5description = "Rust driver for the CYW43439 WiFi chip, used in the Raspberry Pi Pico W."
6keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"] 6keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index 5ed51a5c0..4945f4bd2 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -16,8 +16,8 @@ embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defm
16embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] } 16embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
17embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 17embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
18embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" } 18embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
19cyw43 = { version = "0.1.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] } 19cyw43 = { version = "0.2.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20cyw43-pio = { version = "0.1.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] } 20cyw43-pio = { version = "0.2.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] }
21 21
22defmt = "0.3" 22defmt = "0.3"
23defmt-rtt = "0.4" 23defmt-rtt = "0.4"