This crate provides an utility to flash ELF binaries onto ARM chips.
As of writing this, flashing works for the nRF51822, nRF52832, nRF52840, STMF042, STMF429xI using a DAPLink or an ST-Link.
You can install this utility with
cargo install cargo-flash
You can use it like any cargo command would be used
cargo flash <args>
which will then build your binary and download the contents onto the connected target.
cargo flash
cargo flash --release --chip nRF51822 --target thumbv6m-none-eabi --example gpio_hal_blinky
cargo flash --release --chip-description-path ../../.config/probe-rs/targets/nRF52840.yaml --target thumbv6m-none-eabi --example gpio_hal_blinky
To manually select a chip, you can use the --chip <chip name>
argument. The chip name is an identifier such as nRF51822
or STM32F042
. Capitalization does not matter; Special characters do matter.
You can directly set the chip description by using the --chip-description-path <chip description file path>
or -c
argument. You need to pass it the path to a valid yaml chip description.
You can install valid chip description files locally under $HOME/.config/probe-rs/targets
and flash algorithm files under $HOME/.config/probe-rs/algorithms
. Any chip descriptions for identifiers that match the compiled in identifiers will replace the compiled in descriptions. You can override all the descriptions like this. Invalid files will be ignored gracefully.
If you have a chip you want to flash, feel free to contribute to probe-rs.