You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're able to specify paths to bootloader and partition table files and image format in your package's Cargo metadata for per-project configuration:
119
-
120
-
```toml
121
-
[package.metadata.espflash]
122
-
bootloader = "bootloader.bin"# Must be a binary file
123
-
partition_table = "partitions.csv"# Supports CSV and binary formats
124
-
format = "direct-boot"# Can be 'esp-bootloader' or 'direct-boot'
125
-
```
126
-
127
117
## Configuration File
128
118
129
-
It's possible to specify a serial port and/or USB VID/PID values by setting them in a configuration file. The location of this file differs based on your operating system:
flash Flash an application in ELF format to a connected target device
79
79
monitor Open the serial monitor without flashing the connected target device
80
80
partition-table Convert partition tables between CSV and binary format
81
+
read-flash Read SPI flash content
81
82
save-image Generate a binary application image and save it to a local disk
82
83
write-bin Write a binary file to a specific address in a target device's flash
84
+
checksum-md5 Calculate the MD5 checksum of the given region
83
85
help Print this message or the help of the given subcommand(s)
84
86
85
87
Options:
@@ -133,30 +135,44 @@ espflash = { version = "2.1", default-features = false, features = ["raspberry"]
133
135
134
136
## Configuration File
135
137
136
-
It's possible to specify a serial port and/or USB VID/PID values by setting them in a configuration file. The location of this file differs based on your operating system:
0 commit comments