Can I restart the network stack? #1355
-
In my project, I need to configure my ESP32 as an AP via Bluetooth and I found the following sample code. [https://github.com/nanoframework/Samples/blob/main/samples/WiFiAP/Program.cs]
|
Beta Was this translation helpful? Give feedback.
Answered by
josesimoes
Sep 4, 2023
Replies: 1 comment 3 replies
-
The way IDF works, is yes, to reboot the device to reboot the network stack on ESP32 familly. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Understood that you want to restart only the network stack. With the current implementation that is not possible.
This is because of the high intricacy on the IDF lwIP stack and nanoFramework network driver. Achieving a level of decoupling to accomplish your requirement would need a serious refactoring.