Disable created wifi AP #449
-
Hi, I'm getting this project set up and it's working well for my uses on a Pi Zero 2W. I'm using I'm looking for a way to disable this network (after a button press on a gui using lvgl, but that's fine, just for context), and re-enable it at a later time with CreateOpenNet again. I'm very new to C, so I might be missing something obvious! I've tried; This is from the destructor just pulled out into something usable
I've also tried using the disassoc like:
I've tried to do my due dilligence and searching both for circle and p9 but I'm afraid I can't see anything useful related to this, so hopefully a post here will resolve! Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Unfortunately this is not implemented yet. I will try to provide a solution
soon.
|
Beta Was this translation helpful? Give feedback.
-
There is a new method |
Beta Was this translation helpful? Give feedback.
There is a new method
CBcm4343Device::DestroyOpenNet()
implemented on the develop branch now. You can call it to shutdown a created open network. Later you can re-create the network by callingCBcm4343Device::CreateOpenNet()
as before. TheCBcm4343Device
object must not be deleted in the meantime. Tested on a RPi Zero 2 W.