Moderator: igrr
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.
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());
}
How did you install them together?
I used the 'portable' method as described viewtopic.php?f=26&t=14222