mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-02 05:54:39 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
17
tldr/esptool.py
Normal file
17
tldr/esptool.py
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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`
|
||||
Reference in New Issue
Block a user