Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By QuickFix
#76482 Don't know for certain, but they should.
Only thing I can be certain of is that the only way to get a guaranteed watchdog time-out is by not giving the watchdog time to breathe (using yield or delay), so it will choke. :idea:
User avatar
By picstart
#76487 I'm unsure it is only a wdt issue since if I compile the same code in an Arduino IDE without the Esp32 core installed the esp8266 will run just fine. Also esp8266 boards will run in the dual Esp32 esp8266 environment as long as they don't try to access wifi.
Below is a basic snippet of the code the esp8266 bombs at WiFi.begin

#include <WiFi.h>

char* ssid = "xxxx";
const char* password = "xxx";
void setup()
{
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}