14 lines
481 B
TOML
14 lines
481 B
TOML
#
|
|
# Cargo Configuration for the https://github.com/rp-rs/rp-hal.git repository.
|
|
#
|
|
# You might want to make a similar file in your own repository if you are
|
|
# writing programs for Raspberry Silicon microcontrollers.
|
|
#
|
|
|
|
[build]
|
|
# Set the default target to match the Cortex-M33 in the RP2350
|
|
target = "thumbv8m.main-none-eabihf"
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
# runner = "elf2uf2-rs --deploy --serial --verbose"
|
|
runner = "picotool load -u -v -x -t elf"
|