aboutsummaryrefslogtreecommitdiff
path: root/cyw43/src
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 /cyw43/src
parentc6371d7a9b828297eae43e61440f4cc0af7a3979 (diff)
parent0d568022be9c9d7a39ec88bb3c4c2cb84d0699f2 (diff)
Merge pull request #4678 from ophilli/main
docs(cyw43): clarify Control::join() docs
Diffstat (limited to 'cyw43/src')
-rw-r--r--cyw43/src/control.rs2
1 files changed, 1 insertions, 1 deletions
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