cargo-espflash
Cross-compiler and serial flasher cargo subcommand for Espressif devices. Currently supports ESP32, ESP32-S3, ESP32-C3, and ESP8266.
Prior to flashing, the project is built using the build-std
unstable cargo feature. Please refer to the cargo documentation for more information.
```text cargo-espflash 1.0.0 Cargo subcommand for flashing Espressif devices over serial
USAGE: cargo espflash [FLAGS] [OPTIONS] [SERIAL]
FLAGS: --board-info Display the connected board's information -h, --help Prints help information --monitor Open a serial monitor after flashing --ram Load the application to RAM instead of Flash --release Build the application using the release profile -V, --version Prints version information
OPTIONS:
--bootloader
ARGS:
When the --ram
option is specified, the provided ELF image will be loaded into ram and executed without touching the flash.
You can also specify the serial port by setting it in the config file located at ~/.config/espflash/espflash.toml
or Linux
or %APPDATA%/esp/espflash/espflash.toml
on Windows.
toml
[connection]
serial = "/dev/ttyUSB0"
You can also specify the bootloader or partition table for a project in the package metadata in Cargo.toml
toml
[package.metadata.espflash]
partition_table = "partitions.csv"
bootloader = "bootloader.bin"
bash
$ cargo espflash --release --example blinky /dev/ttyUSB0
Licensed under the GNU General Public License Version 2. See LICENSE for more details.