Open oldoldman opened 2 months ago
In very general terms You have a few options:
.elf
file ending, and then You will find a new uf2-file next to the elf file and You can flash that manually by copying it over to the Pico W in bootsel mode..cargo/config.toml
, You basically use the concept of a runner and when you do a cargo run
or cargo run --release
the config determines what to do to actually perform the command.cargo install probe-rs
and of course get and connect a probe. I am using the debug probe from Raspberry Pi, which is not expensive and works very well for me.
Hi guys, I have comipled the examples/rp successfully and got the ELF binaries. To run the examples on raspberry pico(w) board, they must be converted to UF2 file format. For now , I have to do it manually by runing picotool. Is there any way to integrate this step into the build process? Many thank!