rs-dht-pio/.cargo/config.toml

15 lines
322 B
TOML
Raw Normal View History

2023-09-08 21:09:15 +00:00
[build]
# Set the default target to match the Cortex-M0+ in the RP2040
2025-01-09 18:46:02 +00:00
target = "thumbv8m.main-none-eabihf"
2023-09-08 21:09:15 +00:00
[target.thumbv6m-none-eabi]
rustflags = [
"-C", "link-arg=--nmagic",
"-C", "link-arg=-Tlink.x",
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]
2025-01-09 18:46:02 +00:00
runner = "picotool load -u -v -x -t elf"
2023-09-08 21:09:15 +00:00