18 lines
423 B
TOML
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"]
|