kinda/.cargo/config.toml
2025-07-03 10:55:52 -07:00

21 lines
564 B
TOML

[target.riscv32imac-unknown-none-elf]
# runner = "probe-rs run --chip=esp32c6 --always-print-stacktrace --no-location --catch-hardfault"
runner = "espflash flash --monitor -L defmt --no-skip --chip esp32c6"
rustflags = ["-C", "force-frame-pointers"]
[env]
DEFMT_LOG = "trace"
[build]
rustflags = [
# Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.)
# NOTE: May negatively impact performance of produced code
# "-C",
# "force-frame-pointers",
]
target = "riscv32imac-unknown-none-elf"
[unstable]
build-std = ["alloc", "core"]