esp-hal/esp32c3-hal/.cargo/config.toml
2022-04-05 15:11:37 +02:00

19 lines
390 B
TOML

[target.riscv32imc-unknown-none-elf]
runner = "espflash --monitor"
rustflags = [
"-C", "link-arg=-Tlinkall.x"
]
# for testing: you can specify this target to see atomic emulation in action
[target.riscv32imac-unknown-none-elf]
runner = "espflash --monitor"
rustflags = [
"-C", "link-arg=-Tlinkall.x"
]
[build]
target = "riscv32imc-unknown-none-elf"
[unstable]
build-std = [ "core" ]