simonlbn
simonlbn
The latest SDK fixes the "KRAK" (https://www.krackattacks.com/) vulnerability in the wifi stack, so I think it would be a good idea to get the SDK updated. The SDK is now...
I looked at it a while ago. The ESP32 SDK provides a clean way of doing this with two firmware images - the ESP8266 SDK does not have this funtionality....
Can you include the exact command you run? That makes it simpler to reproduce.
Without knowing for sure stack_low_magic sounds like low water mark of the stack... could it be you are running out of stack space on the threads? Try to run the...
OK, having different _init and _start might make this a lot cleaner.. then you could e.g. do mqtt_client_init(&client...); mqtt_client_set_last_will_and_teastmeant(&client, &msg); mqtt_client_start(&client); etc. and for disconnected lower level channel mqtt_client_stop(&client); //...