cargo-espflash

ESP8266 and ESP32 cross-compiler and serial flasher cargo subcommand.

To build the project before flashing, cargo-espflash has a few options, specified with the --tool TOOL flag.

Usage

bash $ cargo espflash [--board-info] [--ram] [--release] [--example EXAMPLE] [--chip {esp32,esp8266}] [--tool {{cargo,xargo,xbuild}}] <serial>

When the --ram option is specified, the provided ELF image will be loaded into ram and executed without touching the flash.

Config

You can also specify the serial port or build tool 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"

[build] tool = "cargo" ```

Example

bash $ cargo espflash --release --example=blinky /dev/ttyUSB0

License

Licensed under the GNU General Public License Version 2. See LICENSE for more details.