rs-dht-pio/.cargo/config.toml
Jonathan BAUDIN 647182759a First commit
2023-09-08 23:09:15 +02:00

15 lines
299 B
TOML

[build]
# Set the default target to match the Cortex-M0+ in the RP2040
target = "thumbv6m-none-eabi"
[target.thumbv6m-none-eabi]
rustflags = [
"-C", "link-arg=--nmagic",
"-C", "link-arg=-Tlink.x",
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]
runner = "elf2uf2-rs -d"