platform = espressif32
Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.
For more detailed information please visit vendor site.
See board_build.f_cpu option from “platformio.ini” (Project Configuration File)
[env:myenv]
; set frequency to 160MHz
board_build.f_cpu = 160000000L
Please use board_build.f_flash
option from “platformio.ini” (Project Configuration File) to change
a value. Possible values:
40000000L
(default)
80000000L
[env:myenv]
; set frequency to 80MHz
board_build.f_flash = 80000000L
Flash chip interface mode. This parameter is stored in the binary image header, along with the flash size and flash frequency. The ROM bootloader in the ESP chip uses the value of these parameters in order to know how to talk to the flash chip.
Please use board_build.flash_mode
option from “platformio.ini” (Project Configuration File) to change
a value. Possible values:
qio
qout
dio
dout
[env:myenv]
board_build.flash_mode = qio
You can enable external RAM using the next extra build_flags in “platformio.ini” (Project Configuration File) depending on a framework type.
Framework Arduino:
[env:myenv]
platform = espressif32
framework = arduino
board = ...
build_flags =
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
Framework Espressif IoT Development Framework:
[env:myenv]
platform = espressif32
framework = espidf
board = ...
build_flags =
-DCONFIG_SPIRAM_CACHE_WORKAROUND
More details are located in the official ESP-IDF documentation - Support for external RAM.
Please use one of the next build_flags to change debug level. A build_flags option could be used only the one time per build environment. If you need to specify more flags, please separate them with a new line or space.
Actual information is available in Arduino for ESP32 Board Manifest.
Please scroll to esp32.menu.DebugLevel
section.
[env:myenv]
platform = ...
board = ...
framework = arduino
;;;;; Possible options ;;;;;;
; None
build_flags = -DCORE_DEBUG_LEVEL=0
; Error
build_flags = -DCORE_DEBUG_LEVEL=1
; Warn
build_flags = -DCORE_DEBUG_LEVEL=2
; Info
build_flags = -DCORE_DEBUG_LEVEL=3
; Debug
build_flags = -DCORE_DEBUG_LEVEL=4
; Verbose
build_flags = -DCORE_DEBUG_LEVEL=5
You can set custom upload speed using upload_speed option from “platformio.ini” (Project Configuration File)
[env:myenv]
upload_speed = 9600
Please pio run --target
the next command to erase the entire
flash chip (all data replaced with 0xFF bytes):
> pio run --target erase
# or short version
> pio run -t erase
You can create a custom partitions table (CSV) following ESP32 Partition Tables documentation. PlatformIO uses default partition tables depending on a framework type:
default.csv
for Arduino
(show pre-configured partition tables)
partitions_singleapp.csv
for Espressif IoT Development Framework
(show pre-configured partition tables)
To override default table please use board_build.partitions
option in
“platformio.ini” (Project Configuration File).
Warning
SPIFFS partition MUST have configured “Type” as “data” and “SubType”
as “spiffs”. For example, spiffs, data, spiffs, 0x291000, 1M,
Examples:
; 1) A "partitions_custom.csv" in the root of project directory
[env:custom_table]
board_build.partitions = partitions_custom.csv
; 2) Switch between built-in tables
; https://github.com/espressif/arduino-esp32/tree/master/tools/partitions
; https://github.com/espressif/esp-idf/tree/master/components/partition_table
[env:custom_builtin_table]
board_build.partitions = no_ota.csv
Sometimes you have a file with some binary or text data that you’d like to make available to your program - but you don’t want to reformat the file as C source.
There are two options board_build.embed_txtfiles
and board_build.embed_files
which can be used for embedding data. The only difference is that files specified
in board_build.embed_txtfiles
option are null-terminated in the final binary.
[env:myenv]
platform = espressif32
board = ...
board_build.embed_txtfiles =
src/private.pem.key
src/certificate.pem.crt
src/aws-root-ca.pem
Note
In case with ESP-IDF, these files also need to be specified in CMakeLists.txt
using the target_add_binary_data
function.
The file contents will be added to the .rodata
section in flash, and
are available via symbol names as follows:
extern const uint8_t aws_root_ca_pem_start[] asm("_binary_src_aws_root_ca_pem_start");
extern const uint8_t aws_root_ca_pem_end[] asm("_binary_src_aws_root_ca_pem_end");
extern const uint8_t certificate_pem_crt_start[] asm("_binary_src_certificate_pem_crt_start");
extern const uint8_t certificate_pem_crt_end[] asm("_binary_src_certificate_pem_crt_end");
extern const uint8_t private_pem_key_start[] asm("_binary_src_private_pem_key_start");
extern const uint8_t private_pem_key_end[] asm("_binary_src_private_pem_key_end");
The names are generated from the full name of the file. Characters /, .
,
etc. are replaced with underscores. The _binary
+ _nested_folder
prefix
in the symbol name is added by “objcopy” and is the same for both text and binary files.
Note
With the ESP-IDF framework symbol names should not contain path to the files, for example
_binary_private_pem_key_start
instead of _binary_src_private_pem_key_start
.
See full example with embedding Amazon AWS certificates:
Create new project using PlatformIO IDE or initialize project using PlatformIO Core (CLI) and pio project init (if you have not initialized it yet)
Create data
folder (it should be on the same level as src
folder)
and put files here. Also, you can specify own location for
data_dir
Run “Upload File System image” task in PlatformIO IDE or use PlatformIO Core (CLI)
and pio run --target
command with uploadfs
target.
To upload SPIFFS image using OTA update please specify upload_port
/
--upload-port
as IP address or mDNS host name (ending with the *.local
).
Examples:
Video and presentation - swampUP: Over-The-Air (OTA) firmware upgrades for Internet of Things devices with PlatformIO and JFrog Bintray
Demo source code: https://github.com/platformio/bintray-secure-ota
Demo code for:
There are 2 options:
Directly specify pio run --upload-port
in command line
pio run --target upload --upload-port IP_ADDRESS_HERE or mDNS_NAME.local
Specify upload_port
option in “platformio.ini” (Project Configuration File)
You also need to set upload_protocol to espota
.
[env:myenv]
upload_protocol = espota
upload_port = IP_ADDRESS_HERE or mDNS_NAME.local
For example,
pio run -t upload --upload-port 192.168.0.255
pio run -t upload --upload-port myesp8266.local
You can pass additional options/flags to OTA uploader using
upload_flags
option in “platformio.ini” (Project Configuration File)
[env:myenv]
upload_protocol = espota
; each flag in a new line
upload_flags =
--port=3232
Available flags
--port=ESP_PORT
ESP32 OTA Port. Default 8266
--auth=AUTH
Set authentication password
--spiffs
Use this option to transmit a SPIFFS image and do not flash
the module
For the full list with available options please run
~/.platformio/packages/framework-arduinoespressif32/tools/espota.py --help
Usage: espota.py [options]
Transmit image over the air to the esp32 module with OTA support.
Options:
-h, --help show this help message and exit
Destination:
-i ESP_IP, --ip=ESP_IP
ESP32 IP Address.
-I HOST_IP, --host_ip=HOST_IP
Host IP Address.
-p ESP_PORT, --port=ESP_PORT
ESP32 ota Port. Default 3232
-P HOST_PORT, --host_port=HOST_PORT
Host server ota Port. Default random 10000-60000
Authentication:
-a AUTH, --auth=AUTH
Set authentication password.
Image:
-f FILE, --file=FILE
Image file.
-s, --spiffs Use this option to transmit a SPIFFS image and do not
flash the module.
Output:
-d, --debug Show debug output. And override loglevel with debug.
-r, --progress Show progress output. Does not work for ArduinoIDE
-t TIMEOUT, --timeout=TIMEOUT
Timeout to wait for the ESP32 to accept invitation
Warning
For windows users. To manage OTA check the ESP wifi network profile isn’t checked on public be sure it’s on private mode``
PlatformIO will install the latest Arduino Core for ESP32 from
https://github.com/espressif/arduino-esp32. The Git
should be installed in a system. To update Arduino Core to the latest revision,
please open PlatformIO IDE and navigate to PlatformIO Home > Platforms > Updates
.
Please install PlatformIO IDE
Initialize a new project, open “platformio.ini” (Project Configuration File) and specify the link to the framework repository in platform_packages section. For example,
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
platform_packages =
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git
Try to build the project
If you see build errors, then try to build this project using the same
stage
with Arduino IDE
If it works with Arduino IDE but doesn’t work with PlatformIO, then please file a new issue with attached information:
test project/files
detailed log of build process from Arduino IDE (please copy it from console to https://hastebin.com)
detailed log of build process from PlatformIO Build System (please copy it from console to https://hastebin.com)
Tips, tricks and common problems: http://desire.giesecke.tk/index.php/2018/01/30/esp32-wiki-entries/
Examples are listed from Espressif 32 development platform repository:
Debugging - “1-click” solution for debugging with a zero configuration.
JTAG Wiring Connections
Board Pin |
JTAG Tool Pin |
---|---|
IO13 |
TCK |
IO12 |
TDI |
IO15 |
TDO |
IO14 |
TMS |
EN |
RST |
GND |
GND |
Supported debugging tools are listed in “Debug” column. For more detailed information, please scroll table by horizontal. You can switch between debugging Tools & Debug Probes using debug_tool option in “platformio.ini” (Project Configuration File).
Warning
You will need to install debug tool drivers depending on your system. Please click on compatible debug tool below for the further instructions.
Boards listed below have on-board debug probe and ARE READY for debugging! You do not need to use/buy external debug probe.
Name |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|
ESP32 |
240MHz |
4MB |
320KB |
Boards listed below are compatible with Debugging but DEPEND ON external debug probe. They ARE NOT READY for debugging. Please click on board name for the further details.
Name |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
16MB |
520KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32S2 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
3.25MB |
320KB |
|
ESP32 |
240MHz |
3.25MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32S2 |
240MHz |
4MB |
320KB |
|
ESP32S2 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
8MB |
320KB |
|
ESP32 |
240MHz |
8MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
1.25MB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
16MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
1.25MB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
1.25MB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
|
ESP32 |
240MHz |
4MB |
320KB |
You can switch between stable releases of Espressif 32 development platform and the latest upstream version using platform option in “platformio.ini” (Project Configuration File) as described below.
; Latest stable version
[env:latest_stable]
platform = espressif32
board = ...
; Custom stable version
[env:custom_stable]
platform = espressif32@x.y.z
board = ...
[env:upstream_develop]
platform = https://github.com/platformio/platform-espressif32.git
board = ...
Name |
Description |
---|---|
Fork of Arduino Framework for briki MBC-WB boards |
|
Arduino Wiring-based Framework for Espressif ESP32 microcontrollers |
|
Espressif IoT Development Framework. Official development framework for ESP32 chip |
|
Pumbaa Framework - a port of MicroPython, designed for embedded devices with limited amount of RAM and code memory |
|
Simba is an Embedded Programming Platform. It aims to make embedded programming easy and portable |
|
CMake is an open-source, cross-platform family of tools designed to build, test and package software |
|
Espressif ESP8266 and ESP32 serial bootloader utility |
|
idf is a top-level config/build command line tool for ESP-IDF |
|
MBC-WB Uploader Application |
|
Fork of kconfig-frontends project with some modifications for use with ESP-IDF |
|
Tool to build and unpack SPIFFS images |
|
Ninja is a small build system with a focus on speed |
|
Open On-Chip Debugger for Espressif ESP32 |
|
Binutils fork with support for the ESP32-S2 ULP co-processor |
|
Binutils fork with support for the Espressif ESP32 ULP co-processor |
|
GCC Toolchain for Xtensa32 processor |
|
GCC Toolchain for Xtensa32-S2 processor |
Warning
Linux Users:
Install “udev” rules 99-platformio-udev.rules
Raspberry Pi users, please read this article Enable serial port on Raspberry Pi.
Windows Users:
Please check that you have a correctly installed USB driver from board manufacturer
Name |
Description |
---|---|
Arduino Wiring-based Framework allows writing cross-platform software to control devices attached to a wide range of Arduino boards to create all kinds of creative coding, interactive objects, spaces or physical experiences |
|
ESP-IDF is the official development framework for the ESP32 and ESP32-S Series SoCs. |
|
Pumbaa is Python on top of Simba. The implementation is a port of MicroPython, designed for embedded devices with limited amount of RAM and code memory |
|
Simba is an RTOS and build framework with aims to make embedded programming easy and portable |
Note
You can list pre-configured boards by pio boards command or PlatformIO Boards Explorer
For more detailed board
information please scroll the tables below by
horizontally.
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
16MB |
520KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32S2 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
160MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
On-board |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32S2 |
240MHz |
4MB |
320KB |
|
External |
ESP32S2 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
16MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
8MB |
320KB |
|
External |
ESP32 |
240MHz |
8MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
16MB |
6.25MB |
|
No |
ESP32 |
240MHz |
16MB |
6.25MB |
|
No |
ESP32 |
240MHz |
16MB |
520KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
16MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
1.25MB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
16MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
1.25MB |
|
No |
ESP32 |
240MHz |
16MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
1.25MB |
|
External |
ESP32 |
240MHz |
4MB |
1.25MB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
No |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
16MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
16MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
3.25MB |
320KB |
|
External |
ESP32 |
240MHz |
3.25MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
External |
ESP32 |
240MHz |
4MB |
320KB |
|
External |
ESP32 |
240MHz |
4MB |
320KB |
Name |
Debug |
MCU |
Frequency |
Flash |
RAM |
---|---|---|---|---|---|
No |
ESP32 |
240MHz |
2MB |
320KB |