aboutsummaryrefslogtreecommitdiff
path: root/cyw43/src/control.rs
diff options
context:
space:
mode:
authorOwen Phillips <[email protected]>2025-09-17 20:09:30 -0700
committerOwen Phillips <[email protected]>2025-09-17 20:23:24 -0700
commit0d568022be9c9d7a39ec88bb3c4c2cb84d0699f2 (patch)
treeede29ef1a8bc961239fa5e261071ea83f5bdc64a /cyw43/src/control.rs
parentc6371d7a9b828297eae43e61440f4cc0af7a3979 (diff)
docs(cyw43): clarify Control::join() docs
Update doc comment to clarify that Control::join() can be used to join networks using the provided options, not only open networks.
Diffstat (limited to 'cyw43/src/control.rs')
-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