I have a Hiletgo ESP-WROOM-32 ESP32 ESP-32S. The board says nodemcu and esp-32s on the bottom.
I tried choosing board NodeMCU-32S, and Node32s (the latter based on the Hiletgo site), same behavior.
I'm using Arduino IDE version 1.8.16 on Win10.
I have version 1.0.6 of the esp board pack.
I stripped down the code to nothing but setup and an empty loop(), and it still crashes.
When I run this code:
- #include <WiFi.h>
- #include "arduino_secrets.h"
- char ssid[] = SECRET_SSID_MAIN;
- char password[] = SECRET_PASS;
- void setup() {
- Serial.begin(115200);
- while( ! Serial)
- {;}
- WiFi.begin(ssid, password);
- int ntries = 100;
- while (ntries-- > 0 && WiFi.status() != WL_CONNECTED) {
- delay(50);
- Serial.print(".");
- }
- Serial.println(ntries);
- }
- void loop() {
- }
I've run some ESP32 cameras using the Arduino IDE. This is my first try at a regular ESP32 board...........................................................41
Guru Meditation Error: Core panic'ed (Interrupt wdt timeout on CPU0)
Core 0 register dump:
PC 0x40081640 PS 0x00060034 A0 0x80081860 A1 0x3fb830
A2 0x4012bb A3 0x00000001 A4 0x0000000e A5 0x3fb310
A6 0x400881f A7 0x40086834 A8 0x8008163c A9 0x3fb810
A10 0x0000000a A11 0x3fb830 A12 0x0000000a A13 0x3fb650
A14 0x3fc2a A15 0x000006a SAR 0x0000001a EXCCAUSE 0x00000005
EXCVADDR 0x00000000 LBEG 0x4000c6c LEND 0x4000c77 LCOUNT 0x00000000
Core was running in ISR context:
EPC1 : 0x400f327 EPC2 : 0x00000000 EPC3 : 0x00000000 EPC4 : 0x40081640
ELF file SHA256: 000000000000000
Backtrace:0x40081640:0x3fb8300x4008185d0x3fb8600x40086e1:0x3fb8900x400f324:0x3fb6b 0x40105381:0x3fb6e 0x40100a2:0x3fb760 0x40089792:0x3fb790
ore 1 register dump:
PC 0x400d78b PS 0x00060834 A0 0x80089795 A1 0x3fbf0
A2 0x3fc814 A3 0x00000000 A4 0x00060023 A5 0x3fbc4
A6 0x00000000 A7 0x00000000 A8 0x00000000 A9 0x3fbf0
A10 0x3fc7c A11 0x00000029 A12 0x00000020 A13 0x80000020
A14 0x00000003 A15 0x00060a3 SAR 0x00000018 EXCCAUSE 0x00000005
EXCVADDR 0x00000000 LBEG 0x400014f LEND 0x4000150d LCOUNT 0xffff
ELF file SHA256: 000000000000000
Backtrace:0x400d78b0x3fbf00x40089792:0x3fbf0
Rebooting...
Any ideas?