-
-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ESP32 system restart problems #2543
Conversation
…n `esp_wifi_stop()` gets called.
The cause of the WDT is because the call to The problem can be avoided by calling
The following demonstrates that the cause is indeed in
|
@kmihaylov can you test if this change is fixing the restart issue for you? |
Sure, just need to do some daily tasks and I'll try it in the afternoon. |
It looks like Mike's patch is working! I'm updating Sming this way:
Here is the code:
This code successfully restarts the app. If I use the |
Note that with IDF 4.4 (#2612) IPC is no longer available for single-core SOCs, so instead the call can be handled by the
|
See #2500 for discussion.