aboutsummaryrefslogtreecommitdiff
path: root/cyw43
diff options
context:
space:
mode:
authorMatteo Meluzzi <[email protected]>2025-10-02 10:53:31 +0200
committerMatteo Meluzzi <[email protected]>2025-10-02 10:53:31 +0200
commit828a8df18d04877df1f55f04354980b28ff2f2f8 (patch)
treec4fa405f5eba7a14b6d435d6cc746c9e0dc52632 /cyw43
parent176649e71ad442ca9856af6c11989b0b2f228c4b (diff)
parent194a721d0eab929a2af0a2a4e45ca8e70e0d3f0a (diff)
Merge branch 'main' into 17-add-support-for-boot-protocol
Diffstat (limited to 'cyw43')
-rw-r--r--cyw43/CHANGELOG.md3
-rw-r--r--cyw43/Cargo.toml2
-rw-r--r--cyw43/src/control.rs2
3 files changed, 5 insertions, 2 deletions
diff --git a/cyw43/CHANGELOG.md b/cyw43/CHANGELOG.md
index dcf84b9ba..1045fd30b 100644
--- a/cyw43/CHANGELOG.md
+++ b/cyw43/CHANGELOG.md
@@ -9,8 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11- Updated documentation for Control::join() #4678 11- Updated documentation for Control::join() #4678
12- Bump bt-hci to 0.5.0. 12- Bump bt-hci to 0.6.0.
13- Add error handling to HCI transport implementation. 13- Add error handling to HCI transport implementation.
14- Reset WPA security on AP creation #4709
14 15
15## 0.5.0 - 2025-08-28 16## 0.5.0 - 2025-08-28
16 17
diff --git a/cyw43/Cargo.toml b/cyw43/Cargo.toml
index 0d0c26089..c59c15a71 100644
--- a/cyw43/Cargo.toml
+++ b/cyw43/Cargo.toml
@@ -36,7 +36,7 @@ heapless = "0.8.0"
36 36
37# Bluetooth deps 37# Bluetooth deps
38embedded-io-async = { version = "0.6.0", optional = true } 38embedded-io-async = { version = "0.6.0", optional = true }
39bt-hci = { version = "0.5.0", optional = true } 39bt-hci = { version = "0.6.0", optional = true }
40 40
41[package.metadata.embassy] 41[package.metadata.embassy]
42build = [ 42build = [
diff --git a/cyw43/src/control.rs b/cyw43/src/control.rs
index e4dc0804f..fd0d4d532 100644
--- a/cyw43/src/control.rs
+++ b/cyw43/src/control.rs
@@ -470,6 +470,8 @@ impl<'a> Control<'a> {
470 pfi.passphrase[..passphrase.as_bytes().len()].copy_from_slice(passphrase.as_bytes()); 470 pfi.passphrase[..passphrase.as_bytes().len()].copy_from_slice(passphrase.as_bytes());
471 self.ioctl(IoctlType::Set, Ioctl::SetWsecPmk, 0, &mut pfi.to_bytes()) 471 self.ioctl(IoctlType::Set, Ioctl::SetWsecPmk, 0, &mut pfi.to_bytes())
472 .await; 472 .await;
473 } else {
474 self.ioctl_set_u32(Ioctl::SetAuth, 0, 0).await;
473 } 475 }
474 476
475 // Change mutlicast rate from 1 Mbps to 11 Mbps 477 // Change mutlicast rate from 1 Mbps to 11 Mbps