esp_hal_snippets/.cargo/config.toml
2024-08-07 12:04:11 +03:00

18 lines
423 B
TOML

[env]
DEFMT_LOG="info"
[build]
target = "riscv32imc-unknown-none-elf"
rustflags = [
"-C", "link-arg=-Tdefmt.x",
"-C", "link-arg=-Tlinkall.x",
# NOTE: This is required to obtain backtraces, however it may negatively
# impact the performance of your application.
"-C", "force-frame-pointers",
]
[target.riscv32imc-unknown-none-elf]
runner = "probe-rs run --chip=esp32c3"
[unstable]
build-std = ["core"]