Hello,
I have a ESP32- WROOM-32D (30pin) with CH340.
My problem is that even with simple code it is making a continue reset. I have another ESP32 unit and it's giving the same problem.
I tried a complex code and gave me the problem, then I tried this simple code:
void setup() {
Serial.begin(9600);
Serial1.begin(9600);
}
void loop() {
if (Serial1.available()) {
String input = Serial1.readStringUntil('\n');
Serial.println(input);
}
// Feed the watchdog
delay(1);
}
and still the same continues error:
rst:0x8 (TG1WDT_SYS_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0030,len:1344
load:0x40078000,len:13964
load:0x40080400,len:3600
entry 0x400805f0
At this point, I don't have ANY pins connected, just USB connected.
Tested with several different cables.
Tested with different USB ports
Always same issue.
Any clues??
Regards!