13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
# .cargo/config
|
|
|
|
[build]
|
|
# Always compile for the instruction set of the STM32F1
|
|
target = "thumbv8m.main-none-eabihf"
|
|
|
|
# use the Tlink.x scrip from the cortex-m-rt crate
|
|
rustflags = [ "-C", "link-arg=-Tlink.x"]
|
|
|
|
[net]
|
|
retry = 3 # network retries
|
|
git-fetch-with-cli = true
|