Thank you both for the reply.
I'm using: Mac Sequoia 15.7.1, Arduino IDE 2.3.7, and the Freenove ESP32-WROOM-32E which according to Arduion IDE uses the ESP32-D0WD-V3 (revision v3.1) chip type. Also, I've tried both the Boot and Reset buttons to no avail.
I've tried various sketches all pretty basic and I get the same result. For example...here's a basic blink sketch:
/*
* https://circuits4you.com
* ESP32 LED Blink Example
* Board ESP23 DEVKIT V1
*
* ON Board LED GPIO 2
*/
#define LED 2
void setup() {
// Set pin mode
pinMode(LED,OUTPUT);
}
void loop() {
delay(500);
digitalWrite(LED,HIGH);
delay(500);
digitalWrite(LED,LOW);
Here's what I get in the Output:
Sketch uses 272411 bytes (20%) of program storage space. Maximum is 1310720 bytes.
Global variables use 20792 bytes (6%) of dynamic memory, leaving 306888 bytes for local variables. Maximum is 327680 bytes.
esptool v5.1.0
Serial port /dev/cu.usbserial-FA120:
Connecting....
Connected to ESP32 on /dev/cu.usbserial-FA120:
Chip type: ESP32-D0WD-V3 (revision v3.1)
Features: Wi-Fi, BT, Dual Core + LP Core, 240MHz, Vref calibration in eFuse, Coding Scheme None
Crystal frequency: 40MHz
MAC: 88:57:21:55:4a:c8
Uploading stub flasher...
Running stub flasher...
Stub flasher running.
Changing baud rate to 921600...
Changed.
Hard resetting via RTS pin...
Traceback (most recent call last):
File "esptool/__init__.py", line 1173, in _main
File "esptool/__init__.py", line 1032, in main
File "esptool/cli_util.py", line 229, in __call__
File "rich_click/rich_command.py", line 404, in __call__
File "click/core.py", line 1442, in __call__
File "rich_click/rich_command.py", line 187, in main
File "click/core.py", line 1830, in invoke
File "click/core.py", line 1226, in invoke
File "click/core.py", line 794, in invoke
File "click/decorators.py", line 34, in new_func
File "esptool/__init__.py", line 688, in write_flash_cli
File "esptool/cmds.py", line 1112, in attach_flash
File "esptool/loader.py", line 1091, in flash_id
File "esptool/loader.py", line 1653, in run_spiflash_command
File "esptool/loader.py", line 901, in read_reg
File "esptool/loader.py", line 565, in check_command
File "esptool/loader.py", line 495, in command
File "esptool/loader.py", line 431, in read
StopIteration
A fatal error occurred: The chip stopped responding.
Failed uploading: uploading error: exit status 2
And this is what I get in the Serial Monitor:
����������������������
This is the copy of the Error Message I get for the "Upload error; Failed Uploading: Uploading error: exit status 2"
Sketch uses 272411 bytes (20%) of program storage space. Maximum is 1310720 bytes.
Global variables use 20792 bytes (6%) of dynamic memory, leaving 306888 bytes for local variables. Maximum is 327680 bytes.
esptool v5.1.0
Serial port /dev/cu.usbserial-FA120:
Connecting....
Connected to ESP32 on /dev/cu.usbserial-FA120:
Chip type: ESP32-D0WD-V3 (revision v3.1)
Features: Wi-Fi, BT, Dual Core + LP Core, 240MHz, Vref calibration in eFuse, Coding Scheme None
Crystal frequency: 40MHz
MAC: 88:57:21:55:4a:c8
Uploading stub flasher...
Running stub flasher...
Stub flasher running.
Changing baud rate to 921600...
Changed.
Hard resetting via RTS pin...
Traceback (most recent call last):
File "esptool/__init__.py", line 1173, in _main
File "esptool/__init__.py", line 1032, in main
File "esptool/cli_util.py", line 229, in __call__
File "rich_click/rich_command.py", line 404, in __call__
File "click/core.py", line 1442, in __call__
File "rich_click/rich_command.py", line 187, in main
File "click/core.py", line 1830, in invoke
File "click/core.py", line 1226, in invoke
File "click/core.py", line 794, in invoke
File "click/decorators.py", line 34, in new_func
File "esptool/__init__.py", line 688, in write_flash_cli
File "esptool/cmds.py", line 1112, in attach_flash
File "esptool/loader.py", line 1091, in flash_id
File "esptool/loader.py", line 1653, in run_spiflash_command
File "esptool/loader.py", line 901, in read_reg
File "esptool/loader.py", line 565, in check_command
File "esptool/loader.py", line 495, in command
File "esptool/loader.py", line 431, in read
StopIteration
A fatal error occurred: The chip stopped responding.
Failed uploading: uploading error: exit status 2