Files
stm32_rust/hal_test/.cargo/config.toml
2025-10-20 22:37:21 +02:00

12 lines
257 B
TOML

[build]
target = "thumbv8m.main-none-eabihf"
[target.thumbv8m.main-none-eabihf]
runner = "probe-rs run --chip STM32U575ZITxQ"
rustflags = [
"-C", "linker=rust-lld",
"-C", "link-arg=-Tlink.x", # provided by cortex-m-rt
"-C", "link-arg=--nmagic",
]