aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustav Toft <[email protected]>2024-06-05 08:33:55 +0200
committerGustav Toft <[email protected]>2024-06-05 08:33:55 +0200
commit36107996185fdb7b4db2b2f2bc927033cf6d4e41 (patch)
tree153426bb7c61d91fd7e7c1fbb8fe795ffa1f6662
parenta516dbd5e27e73d4e2c245d8903c57d97186cbaa (diff)
Added docs.
-rw-r--r--cyw43/src/control.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cyw43/src/control.rs b/cyw43/src/control.rs
index 0a8cb9c8c..8944865c1 100644
--- a/cyw43/src/control.rs
+++ b/cyw43/src/control.rs
@@ -393,6 +393,7 @@ impl<'a> Control<'a> {
393 self.set_iovar_u32x2("bss", 0, 1).await; // bss = BSS_UP 393 self.set_iovar_u32x2("bss", 0, 1).await; // bss = BSS_UP
394 } 394 }
395 395
396 /// Closes access point.
396 pub async fn close_ap(&mut self) { 397 pub async fn close_ap(&mut self) {
397 // Stop AP 398 // Stop AP
398 self.set_iovar_u32x2("bss", 0, 0).await; // bss = BSS_DOWN 399 self.set_iovar_u32x2("bss", 0, 0).await; // bss = BSS_DOWN