HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

esptool.py — Bootloader utility for Espressif chips (e.g. ESP8266). More information: <https://docs.espressif.com

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandbootloaderesptool.pyclichipsespressifforutility

Problem

How to use the esptool.py command: Bootloader utility for Espressif chips (e.g. ESP8266). More information: <https://docs.espressif.com/projects/esptool/en/latest/esp32/>.

Solution

esptool.py — Bootloader utility for Espressif chips (e.g. ESP8266). More information: <https://docs.espressif.com/projects/esptool/en/latest/esp32/>.

Flash a firmware file to an ESP chip with a given port and baud rate:
sudo esptool.py --port {{port}} --baud {{baud_rate}} write_flash 0x0 {{path/to/firmware.bin}}


Clear the flash of an ESP chip:
sudo esptool.py --port {{port}} --baud {{baud_rate}} erase_flash

Code Snippets

Flash a firmware file to an ESP chip with a given port and baud rate

sudo esptool.py --port {{port}} --baud {{baud_rate}} write_flash 0x0 {{path/to/firmware.bin}}

Clear the flash of an ESP chip

sudo esptool.py --port {{port}} --baud {{baud_rate}} erase_flash

Context

tldr-pages: common/esptool.py

Revisions (0)

No revisions yet.