Page 1 of 1

ESPtool command to return Memory on ESP32 DevKit?

Posted: Tue May 04, 2021 12:13 am
by Fran_iii
What is the ESPtool command entry to return how much memory... ram, sram, flash memory, etc is on the Espressif ESP32 DevKit V4 board?

I just got ESPtool installed on a Win10 PC and a Linux Mint 20 machine and am learning how to use it.

From the command line I know...
> esptool.py --help
and...
>esptool.py chip_id

But I'm having trouble understanding all the
> esptool.py --help
results.

Thanks for any help.

Re: ESPtool command to return Memory on ESP32 DevKit?

Posted: Tue May 04, 2021 8:05 am
by ESP_Minatel
Hi,

You can try:

Code: Select all

esptool.py -p <PORT> flash_id
esptool.py v3.1-dev
Serial port /dev/ttyUSB0
Connecting........_____....._____....._____.
Detecting chip type... ESP32
Chip is ESP32-D0WD-V3 (revision 3)
Features: WiFi, BT, Dual Core, 240MHz, VRef calibration in efuse, Coding Scheme None
Crystal is 40MHz
MAC: fc:f5:c4:3c:62:90
Uploading stub...
Running stub...
Stub running...
Manufacturer: c8
Device: 4017
Detected flash size: 8MB
Hard resetting via RTS pin...

You can see the chip type, features and the detected flash size. For more details you can see by the module/chip datasheet.

Re: ESPtool command to return Memory on ESP32 DevKit?

Posted: Wed May 05, 2021 3:11 pm
by Fran_iii
That did it.
Question Answered by by ESP_Minatel.
Thanks for the help.