I have an application that at start calls sl_Start(0,0,0). Then precedes to turn on an access point. Once the user disconnects from the access point I want to shutdown the wifi card so it does not broadcast anymore. (I also want it in the lowest power mode possible). In this mode I still want access to the file system, and task threads and other features of the SDK. ( Essentially The processor should still be doing things but the wifi should be off. )
According to the User Guide the correct way to hibernate the wifi card is to call sl_Stop(0); When I call this however it prevents the rest of the code from being able to access the file system. I.E. sl_FsOpen(...);
How can I stop the wifi card without these unintended side effects?