Crashing when Wi-Fi got Disconnected #6805
-
Hello, I have a project where I am trying to implement FreeRTOS with Firebase ESP Client since I wanted to log some data to the Firebase Realtime Database. However, it keeps on triggering the WDT Reset when my Wi-Fi get disconnected. I also have another different ESP32 board and the same issue persists. Here is the sample code. The WDT reset error that I keep on receiving is like this:
I installed Arduino IDE and the ESP Exception Decoder and pasted that error, this is what shows up:
I am using:
Help is very much appreciated. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It seems that I already found the solution/workaround to this. I fixed this by removing the Thank you! |
Beta Was this translation helpful? Give feedback.
It seems that I already found the solution/workaround to this. I fixed this by removing the
config.token_status_callback = tokenStatusCallback;
in thevoid setup() {}
function.Thank you!