aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-09-18 08:29:16 +0000
committerGitHub <[email protected]>2025-09-18 08:29:16 +0000
commit93b5f1ebe312bbfa0fc93deb2d6d00062cbddc95 (patch)
treeede29ef1a8bc961239fa5e261071ea83f5bdc64a
parentc6371d7a9b828297eae43e61440f4cc0af7a3979 (diff)
parent0d568022be9c9d7a39ec88bb3c4c2cb84d0699f2 (diff)
Merge pull request #4678 from ophilli/main
docs(cyw43): clarify Control::join() docs
-rw-r--r--cyw43/CHANGELOG.md2
-rw-r--r--cyw43/src/control.rs2
2 files changed, 3 insertions, 1 deletions
diff --git a/cyw43/CHANGELOG.md b/cyw43/CHANGELOG.md
index be7212afd..03363ad01 100644
--- a/cyw43/CHANGELOG.md
+++ b/cyw43/CHANGELOG.md
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11- Updated documentation for Control::join() #4678
12
11## 0.5.0 - 2025-08-28 13## 0.5.0 - 2025-08-28
12 14
13- bump bt-hci to 0.4.0 15- bump bt-hci to 0.4.0
diff --git a/cyw43/src/control.rs b/cyw43/src/control.rs
index f77b487e2..e4dc0804f 100644
--- a/cyw43/src/control.rs
+++ b/cyw43/src/control.rs
@@ -295,7 +295,7 @@ impl<'a> Control<'a> {
295 self.ioctl_set_u32(Ioctl::SetPm, 0, mode_num).await; 295 self.ioctl_set_u32(Ioctl::SetPm, 0, mode_num).await;
296 } 296 }
297 297
298 /// Join an unprotected network with the provided ssid. 298 /// Join a network with the provided SSID using the specified options.
299 pub async fn join(&mut self, ssid: &str, options: JoinOptions<'_>) -> Result<(), Error> { 299 pub async fn join(&mut self, ssid: &str, options: JoinOptions<'_>) -> Result<(), Error> {
300 self.set_iovar_u32("ampdu_ba_wsize", 8).await; 300 self.set_iovar_u32("ampdu_ba_wsize", 8).await;
301 301