mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
esptool: add page (#9276)
This commit is contained in:
parent
9d45084ebe
commit
b25e0e849e
1 changed files with 12 additions and 0 deletions
12
pages/common/esptool.py.md
Normal file
12
pages/common/esptool.py.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# 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`
|
Loading…
Add table
Reference in a new issue