co2_sensing/.cargo/config.toml

18 lines
389 B
TOML
Raw Normal View History

2022-09-08 01:22:35 +00:00
[build]
target = "thumbv6m-none-eabi"
[target.thumbv6m-none-eabi]
2024-06-25 20:20:08 +00:00
runner = "probe-rs run --chip RP2040" # "elf2uf2-rs -d"
2022-09-08 01:22:35 +00:00
rustflags = [
"-C", "link-arg=--nmagic",
"-C", "link-arg=-Tlink.x",
"-C", "link-arg=-Tlink-rp.x",
2022-09-08 01:22:35 +00:00
"-C", "link-arg=-Tdefmt.x",
"-C", "linker=flip-link",
2022-09-08 01:22:35 +00:00
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]
[env]
DEFMT_LOG = "trace"