Skip to content

Commit a94f197

Browse files
authored
Merge pull request #3230 from 9names/cyw43-release-0.2
Uprev cyw43 and cyw43-pio for embassy-rp 0.2 release
2 parents 0f68576 + 49a8cf2 commit a94f197

File tree

5 files changed

+45
-5
lines changed

5 files changed

+45
-5
lines changed

cyw43-pio/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and 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

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.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "RP2040 PIO SPI implementation for cyw43"
66
keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]
@@ -15,7 +15,7 @@ documentation = "https://docs.embassy.dev/cyw43-pio"
1515
overclock = []
1616

1717
[dependencies]
18-
cyw43 = { version = "0.1.0", path = "../cyw43" }
18+
cyw43 = { version = "0.2.0", path = "../cyw43" }
1919
embassy-rp = { version = "0.2.0", path = "../embassy-rp" }
2020
pio-proc = "0.2"
2121
pio = "0.2.1"

cyw43/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and 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

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.1.0"
3+
version = "0.2.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"]

examples/rp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defm
1616
embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
1717
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1818
embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
19-
cyw43 = { version = "0.1.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20-
cyw43-pio = { version = "0.1.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] }
19+
cyw43 = { version = "0.2.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20+
cyw43-pio = { version = "0.2.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] }
2121

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

0 commit comments

Comments
 (0)